From cd5360821a0d107dbc1a097ec93524fd9336b3e9 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 2 Jul 2019 14:03:32 -0700 Subject: 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. --- mesonbuild/compilers/cpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers/cpp.py') 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): -- cgit v1.1