diff options
| author | Ole André Vadla RavnÄs <oleavr@gmail.com> | 2020-04-10 03:10:27 +0000 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-04-17 18:23:40 +0300 |
| commit | c0a8abc5809e0ecd72d6180a40acbf05cefbc427 (patch) | |
| tree | 08ebaa038ce9ad1ae5fa9f7c5c18becab169e4cd /mesonbuild/compilers/mixins/clike.py | |
| parent | 1100484148163af4ea9c9515de763082494ea12f (diff) | |
| download | meson-c0a8abc5809e0ecd72d6180a40acbf05cefbc427.tar.gz | |
compilers: Honor <lang>_ld when linking C-like outputs
Diffstat (limited to 'mesonbuild/compilers/mixins/clike.py')
| -rw-r--r-- | mesonbuild/compilers/mixins/clike.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/compilers/mixins/clike.py b/mesonbuild/compilers/mixins/clike.py index cd16f86f2..41848bccc 100644 --- a/mesonbuild/compilers/mixins/clike.py +++ b/mesonbuild/compilers/mixins/clike.py @@ -304,6 +304,10 @@ class CLikeCompiler: cargs += cleaned_sys_args if mode == 'link': + ld_value = env.lookup_binary_entry(self.for_machine, self.language + '_ld') + if ld_value is not None: + largs += self.use_linker_args(ld_value[0]) + # Add LDFLAGS from the env sys_ld_args = env.coredata.get_external_link_args(self.for_machine, self.language) # CFLAGS and CXXFLAGS go to both linking and compiling, but we want them |
