diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-15 22:33:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 22:33:12 +0200 |
commit | c5572056953e75fbbf03973ee207a4556449edca (patch) | |
tree | 637bb4dbfd5de226bd035edb8abc10072728544a /mesonbuild/compilers | |
parent | 1bb66d15684aa694b88a62e33159f8cfee16ef25 (diff) | |
parent | 20f8e472212d8aa11fdf073a4e04da65f3d702d5 (diff) | |
download | meson-c5572056953e75fbbf03973ee207a4556449edca.zip meson-c5572056953e75fbbf03973ee207a4556449edca.tar.gz meson-c5572056953e75fbbf03973ee207a4556449edca.tar.bz2 |
Merge pull request #6779 from dcbaker/gdc-linker-args
Allow setting linker for GDC as well as LDC
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r-- | mesonbuild/compilers/d.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py index 9a46a4e..eb3a0f3 100644 --- a/mesonbuild/compilers/d.py +++ b/mesonbuild/compilers/d.py @@ -627,7 +627,7 @@ class DCompiler(Compiler): return ' '.join(self.exelist) -class GnuDCompiler(DCompiler, GnuCompiler): +class GnuDCompiler(GnuCompiler, DCompiler): # we mostly want DCompiler, but that gives us the Compiler.LINKER_PREFIX instead LINKER_PREFIX = GnuCompiler.LINKER_PREFIX |