blob: ae819fe07cd02b1bd15015b79138f92be366fb7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- a/libunwind/src/CMakeLists.txt
+++ b/libunwind/src/CMakeLists.txt
@@ -129,7 +129,7 @@
else()
target_compile_options(unwind_shared PRIVATE -fno-rtti)
endif()
- target_link_libraries(unwind_shared PRIVATE ${LIBUNWIND_LIBRARIES})
+ target_link_libraries(unwind_shared PRIVATE ${LIBUNWIND_LIBRARIES} -lssp_nonshared)
set_target_properties(unwind_shared
PROPERTIES
CXX_EXTENSIONS OFF
@@ -157,7 +157,7 @@
else()
target_compile_options(unwind_static PRIVATE -fno-rtti)
endif()
- target_link_libraries(unwind_static PRIVATE ${LIBUNWIND_LIBRARIES})
+ target_link_libraries(unwind_static PRIVATE ${LIBUNWIND_LIBRARIES} -lssp_nonshared)
set_target_properties(unwind_static
PROPERTIES
CXX_EXTENSIONS OFF
|