diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-02 10:58:07 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-07-15 10:59:22 -0700 |
commit | ef448b95aef43a1c4e0e2cb0c173b68ab78f220c (patch) | |
tree | 857ce65690360ece189dc393292229e6c908c185 /mesonbuild/compilers/cpp.py | |
parent | 675874c303222b1cd9df05e70757a6d802d44e6e (diff) | |
download | meson-ef448b95aef43a1c4e0e2cb0c173b68ab78f220c.zip meson-ef448b95aef43a1c4e0e2cb0c173b68ab78f220c.tar.gz meson-ef448b95aef43a1c4e0e2cb0c173b68ab78f220c.tar.bz2 |
compilers: Move ArmCompiler to a mixin module
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r-- | mesonbuild/compilers/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 3a40ff8..15edea0 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -30,7 +30,6 @@ from .compilers import ( IntelGnuLikeCompiler, IntelVisualStudioLikeCompiler, PGICompiler, - ArmCompiler, ArmclangCompiler, Compiler, VisualStudioLikeCompiler, @@ -38,6 +37,7 @@ from .compilers import ( from .c_function_attributes import CXX_FUNC_ATTRIBUTES, C_FUNC_ATTRIBUTES from .mixins.clike import CLikeCompiler from .mixins.ccrx import CcrxCompiler +from .mixins.arm import ArmCompiler def non_msvc_eh_options(eh, args): |