diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-17 13:33:27 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-09-24 12:14:13 -0700 |
commit | 98416e7f755dc9d660349556400363e734ac7828 (patch) | |
tree | 8c919837fc05fab0f7f6a1ca8827acb9304ecc06 /mesonbuild/compilers/cuda.py | |
parent | 02658fdda47f537cff3f52c7e1a97b0ae2d3525b (diff) | |
download | meson-98416e7f755dc9d660349556400363e734ac7828.zip meson-98416e7f755dc9d660349556400363e734ac7828.tar.gz meson-98416e7f755dc9d660349556400363e734ac7828.tar.bz2 |
compilers: put name_string method in base compiler
Every language had the exact same implementation
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 0d89bbc..482d504 100644 --- a/mesonbuild/compilers/cuda.py +++ b/mesonbuild/compilers/cuda.py @@ -210,9 +210,6 @@ class CudaCompiler(Compiler): def get_option_link_args(self, options): return self._cook_link_args(self.host_compiler.get_option_link_args(self._to_host_compiler_options(options))) - def name_string(self): - return ' '.join(self.exelist) - def get_soname_args(self, *args): return self._cook_link_args(self.host_compiler.get_soname_args(*args)) |