aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorAlexey Stukalov <astukalov@gmail.com>2017-12-27 23:43:47 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-12-30 23:21:42 +0200
commit4f32d11e1b975cd37050995c1ec89ebb94a24eaa (patch)
treeab4a54c02b2fbf25aaf2e6bba68998bc378a776c /mesonbuild/compilers
parentae0f4ef055de22996808714d3c42017605a18b3a (diff)
downloadmeson-4f32d11e1b975cd37050995c1ec89ebb94a24eaa.zip
meson-4f32d11e1b975cd37050995c1ec89ebb94a24eaa.tar.gz
meson-4f32d11e1b975cd37050995c1ec89ebb94a24eaa.tar.bz2
add Compiler.thread_flags() stub
fixes #2834
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/compilers.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 9728918..b14074b 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -871,6 +871,9 @@ class Compiler:
args += ['-Wl,-rpath-link,' + lpaths]
return args
+ def thread_flags(self, env):
+ return []
+
GCC_STANDARD = 0
GCC_OSX = 1