aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-11-20 10:20:27 -0800
committerDylan Baker <dylan@pnwbakers.com>2017-12-07 09:35:12 -0800
commitfc547ad05e5a8e650ae5bc2ecc7d40e4dbcc9f0f (patch)
tree2564b9e98b3a1c0c9ceb5ccc3db87fa69fdb5165 /mesonbuild/linkers.py
parent4ae0cadb7f951691e2913a660a61d024d04b5485 (diff)
downloadmeson-fc547ad05e5a8e650ae5bc2ecc7d40e4dbcc9f0f.zip
meson-fc547ad05e5a8e650ae5bc2ecc7d40e4dbcc9f0f.tar.gz
meson-fc547ad05e5a8e650ae5bc2ecc7d40e4dbcc9f0f.tar.bz2
haiku: do not add pthread arguments
Haiku has pthreads, but they are part of the standard C library, and do not need either special compiler or linker flags.
Diffstat (limited to 'mesonbuild/linkers.py')
-rw-r--r--mesonbuild/linkers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py
index de788b7..2333e27 100644
--- a/mesonbuild/linkers.py
+++ b/mesonbuild/linkers.py
@@ -48,7 +48,7 @@ class VisualStudioLinker(StaticLinker):
def build_rpath_args(self, build_dir, from_dir, rpath_paths, build_rpath, install_rpath):
return []
- def thread_link_flags(self):
+ def thread_link_flags(self, env):
return []
def get_option_link_args(self, options):
@@ -100,7 +100,7 @@ class ArLinker(StaticLinker):
def get_always_args(self):
return []
- def thread_link_flags(self):
+ def thread_link_flags(self, env):
return []
def get_option_link_args(self, options):