aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/c.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-12-10 14:42:53 +0200
committerGitHub <noreply@github.com>2017-12-10 14:42:53 +0200
commitcbefb57ffe6645cfc469b1a20894bdb7b553f336 (patch)
tree0b7d79986e641055e7560903c8322faeb7e01cf9 /mesonbuild/compilers/c.py
parent5ff9e05c8bf05304b80a1c21cbbc11f4d5269ff0 (diff)
parent5a1d294b5e27cd77b1ca4ae5d403abd005e20ea9 (diff)
downloadmeson-cbefb57ffe6645cfc469b1a20894bdb7b553f336.zip
meson-cbefb57ffe6645cfc469b1a20894bdb7b553f336.tar.gz
meson-cbefb57ffe6645cfc469b1a20894bdb7b553f336.tar.bz2
Merge pull request #2745 from dcbaker/submit/haiku
small fixes for haiku
Diffstat (limited to 'mesonbuild/compilers/c.py')
-rw-r--r--mesonbuild/compilers/c.py22
1 files changed, 14 insertions, 8 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py
index 0f92e78..9c1d1fc 100644
--- a/mesonbuild/compilers/c.py
+++ b/mesonbuild/compilers/c.py
@@ -16,9 +16,11 @@ import subprocess, os.path, tempfile
from .. import mlog
from .. import coredata
-from ..mesonlib import EnvironmentException, version_compare, Popen_safe, listify
-from ..mesonlib import for_windows, for_darwin, for_cygwin
from . import compilers
+from ..mesonlib import (
+ EnvironmentException, version_compare, Popen_safe, listify,
+ for_windows, for_darwin, for_cygwin, for_haiku,
+)
from .compilers import (
GCC_MINGW,
@@ -281,12 +283,12 @@ class CCompiler(Compiler):
# Add compile flags needed by dependencies
args += d.get_compile_args()
if d.need_threads():
- args += self.thread_flags()
+ args += self.thread_flags(env)
if mode == 'link':
# Add link flags needed to find dependencies
args += d.get_link_args()
if d.need_threads():
- args += self.thread_link_flags()
+ args += self.thread_link_flags(env)
# Select a CRT if needed since we're linking
if mode == 'link':
args += self.get_linker_debug_crt_args()
@@ -781,10 +783,14 @@ class CCompiler(Compiler):
return [trial]
return None
- def thread_flags(self):
+ def thread_flags(self, env):
+ if for_haiku(self.is_cross, env):
+ return []
return ['-pthread']
- def thread_link_flags(self):
+ def thread_link_flags(self, env):
+ if for_haiku(self.is_cross, env):
+ return []
return ['-pthread']
def has_multi_arguments(self, args, env):
@@ -1005,10 +1011,10 @@ class VisualStudioCCompiler(CCompiler):
return []
# FIXME, no idea what these should be.
- def thread_flags(self):
+ def thread_flags(self, env):
return []
- def thread_link_flags(self):
+ def thread_link_flags(self, env):
return []
def get_options(self):