Further adding back pthread to dynamically linking.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2021-03-26 17:59:40 +01:00
parent b2b0ef5bd6
commit 2546751f64
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ endif ()
if (STATICC)
set (CMAKE_SHARED_LINKER_FLAGS "-Wl,--as-needed")
message(STATUS "Linking C library statically")
set(_LINKS ${_LINKS} -static-libgcc -static-libstdc++ -Wl,-Bstatic -lm -lstdc++ -lpthread)
set(_LINKS ${_LINKS} -lpthread -static-libgcc -static-libstdc++ -Wl,-Bstatic -lm -lstdc++)
SET(_TESTLINKS ${_TESTLINKS} -lpthread -static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++)
else()
SET(_LINKS ${_LINKS} Threads::Threads)