diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-07-02 10:31:39 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-07-15 10:59:22 -0700 |
commit | d483da46a97216a15588c4413694c73e53ab9659 (patch) | |
tree | 63819c50939763d1570fed010d373cec03d9aad1 /mesonbuild/compilers/c.py | |
parent | cd12a6fc391782fc9101f71e7bef56590358f06c (diff) | |
download | meson-d483da46a97216a15588c4413694c73e53ab9659.zip meson-d483da46a97216a15588c4413694c73e53ab9659.tar.gz meson-d483da46a97216a15588c4413694c73e53ab9659.tar.bz2 |
compilers: Move clike into a mixins directory
The compilers module is rather large and confusing, with spaghetti
dependencies going every which way. I'm planning to start breaking out
the internal representations into a mixins submodule, for things that
shouldn't be required outside of the compilers module itself.
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 deba5a3..6fe72fb 100644 --- a/mesonbuild/compilers/c.py +++ b/mesonbuild/compilers/c.py @@ -18,7 +18,7 @@ import typing from .. import coredata from ..mesonlib import MachineChoice, MesonException, mlog, version_compare from .c_function_attributes import C_FUNC_ATTRIBUTES -from .clike import CLikeCompiler +from .mixins.clike import CLikeCompiler from .compilers import ( gnu_winlibs, |