diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-11-20 10:20:27 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-12-07 09:35:12 -0800 |
commit | fc547ad05e5a8e650ae5bc2ecc7d40e4dbcc9f0f (patch) | |
tree | 2564b9e98b3a1c0c9ceb5ccc3db87fa69fdb5165 /mesonbuild/linkers.py | |
parent | 4ae0cadb7f951691e2913a660a61d024d04b5485 (diff) | |
download | meson-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.py | 4 |
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): |