Exclude atomic lib under FreeBSD using LLVM
This commit is contained in:
parent
ecedc7df0b
commit
2c8014e565
|
@ -393,9 +393,9 @@ def configure(env):
|
||||||
# Link those statically for portability
|
# Link those statically for portability
|
||||||
if env["use_static_cpp"]:
|
if env["use_static_cpp"]:
|
||||||
env.Append(LINKFLAGS=["-static-libgcc", "-static-libstdc++"])
|
env.Append(LINKFLAGS=["-static-libgcc", "-static-libstdc++"])
|
||||||
if env["use_llvm"]:
|
if env["use_llvm"] and platform.system() != "FreeBSD":
|
||||||
env["LINKCOM"] = env["LINKCOM"] + " -l:libatomic.a"
|
env["LINKCOM"] = env["LINKCOM"] + " -l:libatomic.a"
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if env["use_llvm"]:
|
if env["use_llvm"] and platform.system() != "FreeBSD":
|
||||||
env.Append(LIBS=["atomic"])
|
env.Append(LIBS=["atomic"])
|
||||||
|
|
Loading…
Reference in New Issue