Browse Source

Merge pull request #46348 from hpvb/static-link-atomic-clang-32

[3.2] Allow static linking with libatomic using clang
Rémi Verschelde 4 years ago
parent
commit
87deef7d5d
1 changed files with 6 additions and 1 deletions
  1. 6 1
      platform/x11/detect.py

+ 6 - 1
platform/x11/detect.py

@@ -129,7 +129,6 @@ def configure(env):
             env["CC"] = "clang"
             env["CC"] = "clang"
             env["CXX"] = "clang++"
             env["CXX"] = "clang++"
         env.extra_suffix = ".llvm" + env.extra_suffix
         env.extra_suffix = ".llvm" + env.extra_suffix
-        env.Append(LIBS=["atomic"])
 
 
     if env["use_lld"]:
     if env["use_lld"]:
         if env["use_llvm"]:
         if env["use_llvm"]:
@@ -382,3 +381,9 @@ def configure(env):
         # That doesn't make any sense but it's likely a Ubuntu bug?
         # That doesn't make any sense but it's likely a Ubuntu bug?
         if is64 or env["bits"] == "64":
         if is64 or env["bits"] == "64":
             env.Append(LINKFLAGS=["-static-libgcc", "-static-libstdc++"])
             env.Append(LINKFLAGS=["-static-libgcc", "-static-libstdc++"])
+        if env["use_llvm"]:
+            env["LINKCOM"] = env["LINKCOM"] + " -l:libatomic.a"
+
+    else:
+        if env["use_llvm"]:
+            env.Append(LIBS=["atomic"])