summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-12-14 19:05:06 +0100
committerGitHub <noreply@github.com>2017-12-14 19:05:06 +0100
commite1b374d5b624c1e0a09d8c6e5c11fc53f8d90423 (patch)
tree8e3515be7ebefa45e2ea314a882be61c3bc573d8 /platform
parentb872439eefb7d54a572ace3a57fea01787c46952 (diff)
parentab9cda1497e7bed41b474a0ab8a2a4b0547dd916 (diff)
Merge pull request #14662 from akien-mga/openmp-clang
openmp: Don't try to link GCC's implementation on Clang
Diffstat (limited to 'platform')
-rw-r--r--platform/x11/detect.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py
index 0f07e22e6b..ed75e5eab5 100644
--- a/platform/x11/detect.py
+++ b/platform/x11/detect.py
@@ -265,9 +265,10 @@ def configure(env):
env.Append(LINKFLAGS=['-m64', '-L/usr/lib/i686-linux-gnu'])
- if (env["openmp"]):
+ if env["openmp"]:
env.Append(CPPFLAGS=['-fopenmp'])
- env.Append(LIBS=['gomp'])
+ if not env['use_llvm']:
+ env.Append(LIBS=['gomp'])
if env['use_static_cpp']:
env.Append(LINKFLAGS=['-static-libstdc++'])