aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/c.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-07-02 10:58:07 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-07-15 10:59:22 -0700
commitef448b95aef43a1c4e0e2cb0c173b68ab78f220c (patch)
tree857ce65690360ece189dc393292229e6c908c185 /mesonbuild/compilers/c.py
parent675874c303222b1cd9df05e70757a6d802d44e6e (diff)
downloadmeson-ef448b95aef43a1c4e0e2cb0c173b68ab78f220c.zip
meson-ef448b95aef43a1c4e0e2cb0c173b68ab78f220c.tar.gz
meson-ef448b95aef43a1c4e0e2cb0c173b68ab78f220c.tar.bz2
compilers: Move ArmCompiler to a mixin module
Diffstat (limited to 'mesonbuild/compilers/c.py')
-rw-r--r--mesonbuild/compilers/c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py
index bfd4629..90dd51f 100644
--- a/mesonbuild/compilers/c.py
+++ b/mesonbuild/compilers/c.py
@@ -20,10 +20,10 @@ from ..mesonlib import MachineChoice, MesonException, mlog, version_compare
from .c_function_attributes import C_FUNC_ATTRIBUTES
from .mixins.clike import CLikeCompiler
from .mixins.ccrx import CcrxCompiler
+from .mixins.arm import ArmCompiler
from .compilers import (
gnu_winlibs,
msvc_winlibs,
- ArmCompiler,
ArmclangCompiler,
ClangCompiler,
Compiler,