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/cs.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/cs.py')
-rw-r--r-- | mesonbuild/compilers/cs.py | 3 |
1 files changed, 0 insertions, 3 deletions
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[:] |