Move pthread to dynamic links for test executable.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2021-03-26 17:56:12 +01:00
parent 7f9c11c77c
commit b2b0ef5bd6
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ 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(_TESTLINKS ${_TESTLINKS} -static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++ -lpthread)
SET(_TESTLINKS ${_TESTLINKS} -lpthread -static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++)
else()
SET(_LINKS ${_LINKS} Threads::Threads)
endif()