mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
20 lines
1.1 KiB
Diff
20 lines
1.1 KiB
Diff
--- a/libunwind/src/CMakeLists.txt
|
|
+++ b/libunwind/src/CMakeLists.txt
|
|
@@ -148,7 +148,7 @@
|
|
else()
|
|
target_compile_options(unwind_shared_objects PRIVATE -fno-rtti)
|
|
endif()
|
|
-target_link_libraries(unwind_shared_objects PRIVATE unwind-headers ${LIBUNWIND_LIBRARIES})
|
|
+target_link_libraries(unwind_shared_objects PRIVATE unwind-headers ${LIBUNWIND_LIBRARIES} -lssp_nonshared)
|
|
target_compile_options(unwind_shared_objects PUBLIC "${LIBUNWIND_ADDITIONAL_COMPILE_FLAGS}")
|
|
target_link_libraries(unwind_shared_objects PUBLIC "${LIBUNWIND_ADDITIONAL_LIBRARIES}")
|
|
set_target_properties(unwind_shared_objects
|
|
@@ -188,7 +188,7 @@
|
|
else()
|
|
target_compile_options(unwind_static_objects PRIVATE -fno-rtti)
|
|
endif()
|
|
-target_link_libraries(unwind_static_objects PRIVATE unwind-headers ${LIBUNWIND_LIBRARIES})
|
|
+target_link_libraries(unwind_static_objects PRIVATE unwind-headers ${LIBUNWIND_LIBRARIES} -lssp_nonshared)
|
|
target_compile_options(unwind_static_objects PUBLIC "${LIBUNWIND_ADDITIONAL_COMPILE_FLAGS}")
|
|
target_link_libraries(unwind_static_objects PUBLIC "${LIBUNWIND_ADDITIONAL_LIBRARIES}")
|
|
set_target_properties(unwind_static_objects
|