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/cuda.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/cuda.py')
-rw-r--r-- | mesonbuild/compilers/cuda.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/compilers/cuda.py b/mesonbuild/compilers/cuda.py index b227ad3..e6b4d04 100644 --- a/mesonbuild/compilers/cuda.py +++ b/mesonbuild/compilers/cuda.py @@ -213,9 +213,6 @@ class CudaCompiler(Compiler): def get_soname_args(self, *args): return self._cook_link_args(self.host_compiler.get_soname_args(*args)) - def get_dependency_gen_args(self, outtarget, outfile): - return [] - def get_compile_only_args(self): return ['-c'] |