diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-11-25 12:05:19 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-12-12 09:35:32 -0800 |
commit | 7460e4ccda339d167402bd077dcaa364fab5e172 (patch) | |
tree | 0926cbc0b7970b4b9de20b6801d6aba51efa712d /mesonbuild/compilers/cuda.py | |
parent | ee6e249f659cd4658ae2f1a425d4aa01585c23aa (diff) | |
download | meson-7460e4ccda339d167402bd077dcaa364fab5e172.zip meson-7460e4ccda339d167402bd077dcaa364fab5e172.tar.gz meson-7460e4ccda339d167402bd077dcaa364fab5e172.tar.bz2 |
compilers: Make get_display_language a class or static method
Currently this is done at the instance level, but we need it at the
class level to allow compiler "lang" args to be gotten early enough.
This patch also removes a couple of instance of branch/leaf classes
providing their own implementation that is identical to the Compiler
version.
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 c8ab9ac..385e4cf 100644 --- a/mesonbuild/compilers/cuda.py +++ b/mesonbuild/compilers/cuda.py @@ -61,9 +61,6 @@ class CudaCompiler(Compiler): def get_always_args(self): return [] - def get_display_language(self): - return 'Cuda' - def get_no_stdinc_args(self): return [] |