diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-02 14:03:32 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-07-15 10:59:22 -0700 |
commit | cd5360821a0d107dbc1a097ec93524fd9336b3e9 (patch) | |
tree | 04249ea4ee7318e2c8c1ef580a325f47797077c5 /mesonbuild/compilers/c.py | |
parent | d68969f1691515b45f0f9d438aebb120059872d9 (diff) | |
download | meson-cd5360821a0d107dbc1a097ec93524fd9336b3e9.zip meson-cd5360821a0d107dbc1a097ec93524fd9336b3e9.tar.gz meson-cd5360821a0d107dbc1a097ec93524fd9336b3e9.tar.bz2 |
compilers: split gnu and gnulike compilers out of compilers
I debated a bit whether both classes really belong in the same module,
and decided that they do because the share a number of helpers.
Diffstat (limited to 'mesonbuild/compilers/c.py')
-rw-r--r-- | mesonbuild/compilers/c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 2effec6..3a7c1f9 100644 --- a/mesonbuild/compilers/c.py +++ b/mesonbuild/compilers/c.py @@ -22,6 +22,7 @@ from .mixins.clike import CLikeCompiler from .mixins.ccrx import CcrxCompiler from .mixins.arm import ArmCompiler from .mixins.visualstudio import VisualStudioLikeCompiler +from .mixins.gnu import GnuCompiler from .compilers import ( gnu_winlibs, msvc_winlibs, @@ -29,7 +30,6 @@ from .compilers import ( ClangCompiler, Compiler, CompilerType, - GnuCompiler, ElbrusCompiler, IntelGnuLikeCompiler, IntelVisualStudioLikeCompiler, |