forked from pool/graphite2
53f40c1b4c
- add link-gcc-shared.diff: link -lgcc_s to fix undefined symbols on various ARM architectures OBS-URL: https://build.opensuse.org/request/show/257898 OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/graphite2?expand=0&rev=17
12 lines
405 B
Diff
12 lines
405 B
Diff
--- src/CMakeLists.txt
|
|
+++ src/CMakeLists.txt
|
|
@@ -121,7 +121,7 @@
|
|
if (GRAPHITE2_ASAN)
|
|
target_link_libraries(graphite2 c gcc_s)
|
|
else (GRAPHITE2_ASAN)
|
|
- target_link_libraries(graphite2 c gcc)
|
|
+ target_link_libraries(graphite2 c gcc_s)
|
|
endif (GRAPHITE2_ASAN)
|
|
include(Graphite)
|
|
nolib_test(stdc++ $<TARGET_SONAME_FILE:graphite2>)
|