aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-01-28 15:34:57 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2019-01-29 22:06:11 +0200
commit4e31ca3abeecf0591cccc7052da34c2735759030 (patch)
treed9fa61740cb210681a6e8db9a588ccd9a2c3440b /mesonbuild/compilers
parent1058430898245cb904f7e617b63aa5ae8867edb2 (diff)
downloadmeson-4e31ca3abeecf0591cccc7052da34c2735759030.zip
meson-4e31ca3abeecf0591cccc7052da34c2735759030.tar.gz
meson-4e31ca3abeecf0591cccc7052da34c2735759030.tar.bz2
correct naming to CudaCompiler, pep8
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/__init__.py2
-rw-r--r--mesonbuild/compilers/compilers.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py
index 60cca93..5de0e59 100644
--- a/mesonbuild/compilers/__init__.py
+++ b/mesonbuild/compilers/__init__.py
@@ -72,7 +72,7 @@ __all__ = [
'JavaCompiler',
'LLVMDCompiler',
'MonoCompiler',
- 'NvidiaCudaCompiler',
+ 'CudaCompiler',
'VisualStudioCsCompiler',
'NAGFortranCompiler',
'ObjCCompiler',
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 97e2b94..317d91a 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -150,7 +150,7 @@ cuda_buildtype_args = {'plain': [],
'debugoptimized': [],
'release': [],
'minsize': [],
- }
+ }
arm_buildtype_args = {'plain': [],
'debug': ['-O0', '--debug'],