aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/glog/glog/libexecinfo.patch
blob: 927c269a6a8c65c2ee0c51ce862f13076a1a1e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Link libexecinfo if its found, this is needed for musl based systems

Fixes
ld: libglog.so.0.4.0: undefined reference to `backtrace'
| collect2: error: ld returned 1 exit status

Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -144,6 +144,7 @@ check_cxx_compiler_flag (-Wunnamed-type-
 check_symbol_exists (snprintf cstdio HAVE_SNPRINTF)
 
 check_library_exists (dbghelp UnDecorateSymbolName "" HAVE_DBGHELP)
+check_library_exists (execinfo backtrace "" HAVE_EXECINFO)
 
 check_cxx_source_compiles ("
 #include <cstdlib>
@@ -584,6 +585,10 @@ if (Unwind_FOUND)
   set (Unwind_DEPENDENCY "find_dependency (Unwind ${Unwind_VERSION})")
 endif (Unwind_FOUND)
 
+if (HAVE_EXECINFO)
+  target_link_libraries (glog PUBLIC execinfo)
+endif (HAVE_EXECINFO)
+
 if (HAVE_DBGHELP)
    target_link_libraries (glog PUBLIC dbghelp)
 endif (HAVE_DBGHELP)