summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/__init__.py
diff options
context:
space:
mode:
authorSomasekhar Penugonda <somashekar.penugonda@cirrus.com>2018-03-15 18:33:11 +0530
committerBedarkar, Malhar <malhar.bedarkar@cirrus.com>2018-03-27 17:04:26 -0500
commite62b8109ebfef437a380f2d8cedd1565095a5574 (patch)
tree2e353dba15707166c005125930dee6be90751193 /mesonbuild/compilers/__init__.py
parent831d1e4c2e7b0ce8dfd0b2471bf2dab499181d66 (diff)
downloadmeson-e62b8109ebfef437a380f2d8cedd1565095a5574.tar.gz
Updates to CPP support and update review changes
Diffstat (limited to 'mesonbuild/compilers/__init__.py')
-rw-r--r--mesonbuild/compilers/__init__.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py
index e58a60471..55276d9d7 100644
--- a/mesonbuild/compilers/__init__.py
+++ b/mesonbuild/compilers/__init__.py
@@ -41,9 +41,6 @@ __all__ = [
'sanitizer_compile_args',
'sort_clike',
- 'ARMCompiler',
- 'ARMCCompiler',
- 'ARMCPPCompiler',
'CCompiler',
'ClangCCompiler',
'ClangCompiler',
@@ -118,7 +115,7 @@ from .compilers import (
IntelCompiler,
)
from .c import (
- ARMCCompiler,
+ ArmCCompiler,
CCompiler,
ClangCCompiler,
GnuCCompiler,
@@ -126,7 +123,7 @@ from .c import (
VisualStudioCCompiler,
)
from .cpp import (
- ARMCPPCompiler,
+ ArmCPPCompiler,
CPPCompiler,
ClangCPPCompiler,
GnuCPPCompiler,