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/cpp.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/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 cf893b9..67a5748 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -25,7 +25,6 @@ from .compilers import ( gnu_winlibs, msvc_winlibs, ClangCompiler, - GnuCompiler, ElbrusCompiler, IntelGnuLikeCompiler, IntelVisualStudioLikeCompiler, @@ -38,6 +37,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 def non_msvc_eh_options(eh, args): |