diff options
author | Alistair Thomas <astavale@yahoo.co.uk> | 2017-06-21 19:02:29 +0100 |
---|---|---|
committer | Alistair Thomas <astavale@yahoo.co.uk> | 2017-06-22 20:09:58 +0100 |
commit | e5559903b3857a333c6cbc88b44d6759c293e5df (patch) | |
tree | 140a008acba1b48631836456678bc1926babb684 /mesonbuild/environment.py | |
parent | 080307dd71d9b41a103369863137ed5b73eb131a (diff) | |
download | meson-e5559903b3857a333c6cbc88b44d6759c293e5df.zip meson-e5559903b3857a333c6cbc88b44d6759c293e5df.tar.gz meson-e5559903b3857a333c6cbc88b44d6759c293e5df.tar.bz2 |
Split linkers out from compilers.py
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index d21c6cc..d06436b 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -12,15 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -import os -import platform -import re +import configparser, os, platform, re, shlex, shutil from .compilers import * +from .linkers import ArLinker, VisualStudioLinker from .mesonlib import EnvironmentException, Popen_safe -import configparser -import shlex -import shutil build_filename = 'meson.build' |