aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/clike.py
diff options
context:
space:
mode:
authorCody Schafer <jmesmon@gmail.com>2019-06-27 13:36:09 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2019-06-27 20:36:09 +0300
commit11248eb203e16dae6dc288d148b20b44fb0a5ac0 (patch)
tree307b8b0741673d7bd66fdb7a28294fa58a1d8e3c /mesonbuild/compilers/clike.py
parentecbfc08dcacf015f9fd9e921a2136c80528f2809 (diff)
downloadmeson-11248eb203e16dae6dc288d148b20b44fb0a5ac0.zip
meson-11248eb203e16dae6dc288d148b20b44fb0a5ac0.tar.gz
meson-11248eb203e16dae6dc288d148b20b44fb0a5ac0.tar.bz2
sanitycheckc: avoid linking sanitycheckc when cross compiling
Diffstat (limited to 'mesonbuild/compilers/clike.py')
-rw-r--r--mesonbuild/compilers/clike.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/compilers/clike.py b/mesonbuild/compilers/clike.py
index e923ff2..4335b81 100644
--- a/mesonbuild/compilers/clike.py
+++ b/mesonbuild/compilers/clike.py
@@ -396,6 +396,8 @@ class CLikeCompiler:
elif mode == 'link':
# Add LDFLAGS from the env
args += env.coredata.get_external_link_args(self.for_machine, self.language)
+
+ args += self.get_compiler_args_for_mode(mode)
return args
def _get_compiler_check_args(self, env, extra_args, dependencies, mode='compile'):