summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-02-12 21:16:12 +0100
committerDavid Robillard <d@drobilla.net>2017-02-12 21:16:12 +0100
commit0faf69db76f668944d9380152fd4f9080d9e6152 (patch)
tree3f7e7c9d8edb1611b87cb5decfca627819e75b65 /wscript
parent369118b48747b8b3b8eaf14b2e7f51549720d5ab (diff)
downloadingen-0faf69db76f668944d9380152fd4f9080d9e6152.tar.gz
ingen-0faf69db76f668944d9380152fd4f9080d9e6152.tar.bz2
ingen-0faf69db76f668944d9380152fd4f9080d9e6152.zip
Fix warnings
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index 7a15d63f..538e2b84 100644
--- a/wscript
+++ b/wscript
@@ -153,7 +153,8 @@ def configure(conf):
if conf.check(cflags=['-pthread'], mandatory=False):
conf.env.PTHREAD_CFLAGS = ['-pthread']
- conf.env.PTHREAD_LINKFLAGS = ['-pthread']
+ if conf.env.CXX_NAME != 'clang':
+ conf.env.PTHREAD_LINKFLAGS = ['-pthread']
elif conf.check(linkflags=['-lpthread'], mandatory=False):
conf.env.PTHREAD_CFLAGS = []
conf.env.PTHREAD_LINKFLAGS = ['-lpthread']