aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/d.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/d.py
parentd68969f1691515b45f0f9d438aebb120059872d9 (diff)
downloadmeson-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/d.py')
-rw-r--r--mesonbuild/compilers/d.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py
index 9d9863b..1a37c63 100644
--- a/mesonbuild/compilers/d.py
+++ b/mesonbuild/compilers/d.py
@@ -23,13 +23,11 @@ from .compilers import (
d_dmd_buildtype_args,
d_gdc_buildtype_args,
d_ldc_buildtype_args,
- get_gcc_soname_args,
- gnu_color_args,
- gnu_optimization_args,
clike_debug_args,
Compiler,
CompilerArgs,
)
+from .mixins.gnu import get_gcc_soname_args, gnu_color_args, gnu_optimization_args
d_feature_args = {'gcc': {'unittest': '-funittest',
'debug': '-fdebug',