From e7f0890cb9a26e2e64e79739c80fddb609d484cf Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 22 Sep 2020 10:54:16 -0700 Subject: compilers: move get_dependency_gen_args to base Compiler So that every subclass doesn't have to reimplement it. Especially since the Gnu implementation moved out of the CCompiler and into the GnuLikeCompiler mixin --- mesonbuild/compilers/d.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'mesonbuild/compilers/d.py') diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py index ca7f80d..2be19f7 100644 --- a/mesonbuild/compilers/d.py +++ b/mesonbuild/compilers/d.py @@ -99,10 +99,6 @@ class DmdLikeCompilerMixin: def get_werror_args(self): return ['-w'] - def get_dependency_gen_args(self, outtarget, outfile): - # DMD and LDC does not currently return Makefile-compatible dependency info. - return [] - def get_coverage_args(self): return ['-cov'] -- cgit v1.1