mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Merge pull request #2683 from fpoli/fix-static-linking
Link pthread using the --whole-archive option
This commit is contained in:
commit
1048abfd9f
|
@ -2631,7 +2631,7 @@ def mk_config():
|
|||
config.write('LINK=%s\n' % CXX)
|
||||
config.write('LINK_FLAGS=\n')
|
||||
config.write('LINK_OUT_FLAG=-o \n')
|
||||
if build_static_lib() or build_static_bin():
|
||||
if is_linux() and (build_static_lib() or build_static_bin()):
|
||||
config.write('LINK_EXTRA_FLAGS=-Wl,--whole-archive -lpthread -Wl,--no-whole-archive %s\n' % LDFLAGS)
|
||||
else:
|
||||
config.write('LINK_EXTRA_FLAGS=-lpthread %s\n' % LDFLAGS)
|
||||
|
|
Loading…
Reference in a new issue