summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/__init__.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-07-02 14:03:32 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-07-15 10:59:22 -0700
commitcd5360821a0d107dbc1a097ec93524fd9336b3e9 (patch)
tree04249ea4ee7318e2c8c1ef580a325f47797077c5 /mesonbuild/compilers/__init__.py
parentd68969f1691515b45f0f9d438aebb120059872d9 (diff)
downloadmeson-cd5360821a0d107dbc1a097ec93524fd9336b3e9.tar.gz
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/__init__.py')
-rw-r--r--mesonbuild/compilers/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py
index 98241a6b6..ac3f16080 100644
--- a/mesonbuild/compilers/__init__.py
+++ b/mesonbuild/compilers/__init__.py
@@ -107,7 +107,6 @@ from .compilers import (
clink_langs,
c_suffixes,
cpp_suffixes,
- get_macos_dylib_install_name,
get_base_compile_args,
get_base_link_args,
is_header,
@@ -121,7 +120,6 @@ from .compilers import (
sort_clink,
ClangCompiler,
CompilerArgs,
- GnuCompiler,
IntelGnuLikeCompiler,
IntelVisualStudioLikeCompiler,
)
@@ -190,3 +188,4 @@ from .rust import RustCompiler
from .swift import SwiftCompiler
from .vala import ValaCompiler
from .mixins.visualstudio import VisualStudioLikeCompiler
+from .mixins.gnu import GnuCompiler, get_macos_dylib_install_name \ No newline at end of file