From 9d559b2b39d4ba084ad479bfb3100b62c13c7d61 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Tue, 25 Aug 2015 23:09:54 +0300 Subject: More robust windows detection and more logs. --- meson.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meson.py') diff --git a/meson.py b/meson.py index 01a46fcf8..db4560984 100755 --- a/meson.py +++ b/meson.py @@ -19,6 +19,7 @@ import datetime import os.path import environment, interpreter, mesonlib import build +import platform import mlog, coredata from coredata import MesonException @@ -118,6 +119,8 @@ itself as required.''' env = environment.Environment(self.source_dir, self.build_dir, self.meson_script_file, self.options) mlog.initialize(env.get_log_dir()) mlog.debug('Build started at', datetime.datetime.now().isoformat()) + mlog.debug('Python binary:', sys.executable) + mlog.debug('Python system:', platform.system()) mlog.log(mlog.bold('The Meson build system')) mlog.log('Version:', coredata.version) mlog.log('Source dir:', mlog.bold(self.source_dir)) -- cgit v1.2.3