From fe86c594c6a3b5f99d2150ae165c951e7a41955a Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 6 Mar 2020 16:00:32 -0800 Subject: Allow invoking the linker directly through dmd DMD is awful in a lot of ways. To change the linker you set an environment variable, which is pretty much impossible for us. --- mesonbuild/compilers/d.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mesonbuild/compilers') diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py index 293a2ae..a026e83 100644 --- a/mesonbuild/compilers/d.py +++ b/mesonbuild/compilers/d.py @@ -765,3 +765,6 @@ class DmdDCompiler(DmdLikeCompilerMixin, DCompiler): def get_optimization_args(self, optimization_level): return dmd_optimization_args[optimization_level] + + def can_linker_accept_rsp(self) -> bool: + return False -- cgit v1.1