diff options
-rw-r--r-- | mesonbuild/compilers/__init__.py | 2 | ||||
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 | ||||
-rw-r--r-- | mesonbuild/interpreterbase.py | 2 |
3 files changed, 3 insertions, 3 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'], diff --git a/mesonbuild/interpreterbase.py b/mesonbuild/interpreterbase.py index 45a4cb0..9206d02 100644 --- a/mesonbuild/interpreterbase.py +++ b/mesonbuild/interpreterbase.py @@ -18,7 +18,7 @@ from . import mparser, mesonlib, mlog from . import environment, dependencies -import os, copy, re, types +import os, copy, re from functools import wraps class ObjectHolder: |