diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-22 10:54:16 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 15:05:00 -0700 |
commit | e7f0890cb9a26e2e64e79739c80fddb609d484cf (patch) | |
tree | e19982b181afbddc39ad61b40c136973968884e0 /mesonbuild/compilers/d.py | |
parent | 1513aa437dd397934eff176c81d742a78e54ddb9 (diff) | |
download | meson-e7f0890cb9a26e2e64e79739c80fddb609d484cf.zip meson-e7f0890cb9a26e2e64e79739c80fddb609d484cf.tar.gz meson-e7f0890cb9a26e2e64e79739c80fddb609d484cf.tar.bz2 |
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
Diffstat (limited to 'mesonbuild/compilers/d.py')
-rw-r--r-- | mesonbuild/compilers/d.py | 4 |
1 files changed, 0 insertions, 4 deletions
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'] |