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/cs.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'mesonbuild/compilers/cs.py') diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py index b8e673e..01d2adb 100644 --- a/mesonbuild/compilers/cs.py +++ b/mesonbuild/compilers/cs.py @@ -61,9 +61,6 @@ class CsCompiler(BasicLinkerIsCompilerMixin, Compiler): def get_werror_args(self): return ['-warnaserror'] - def get_dependency_gen_args(self, outtarget, outfile): - return [] - def get_linker_exelist(self): return self.exelist[:] -- cgit v1.1