aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-03-15 22:33:12 +0200
committerGitHub <noreply@github.com>2020-03-15 22:33:12 +0200
commitc5572056953e75fbbf03973ee207a4556449edca (patch)
tree637bb4dbfd5de226bd035edb8abc10072728544a /mesonbuild
parent1bb66d15684aa694b88a62e33159f8cfee16ef25 (diff)
parent20f8e472212d8aa11fdf073a4e04da65f3d702d5 (diff)
downloadmeson-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')
-rw-r--r--mesonbuild/compilers/d.py2
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