aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cuda.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/compilers/cuda.py')
-rw-r--r--mesonbuild/compilers/cuda.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/mesonbuild/compilers/cuda.py b/mesonbuild/compilers/cuda.py
index e6b4d04..5fdf024 100644
--- a/mesonbuild/compilers/cuda.py
+++ b/mesonbuild/compilers/cuda.py
@@ -251,10 +251,7 @@ class CudaCompiler(Compiler):
def get_link_debugfile_args(self, targetfile):
return self._cook_link_args(self.host_compiler.get_link_debugfile_args(targetfile))
- def depfile_for_object(self, objfile):
- return objfile + '.' + self.get_depfile_suffix()
-
- def get_depfile_suffix(self):
+ def get_depfile_suffix(self) -> str:
return 'd'
def get_buildtype_linker_args(self, buildtype):