diff --git a/SConstruct b/SConstruct index de19797a3..ff1135a2f 100644 --- a/SConstruct +++ b/SConstruct @@ -1129,6 +1129,7 @@ if not preconfigured: else: color_print(4,'SCons USE_CONFIG specified as false, will not inherit variables python config file...') + conf = Configure(env, custom_tests = conf_tests) if env['DEBUG']: @@ -1142,6 +1143,9 @@ if not preconfigured: env['PLATFORM'] = platform.uname()[0] color_print(4,"Configuring on %s in *%s*..." % (env['PLATFORM'],mode)) + cxx_version = call("%s --version" % env["CXX"] ,silent=True) + color_print(5, "CXX %s" % cxx_version) + env['MISSING_DEPS'] = [] env['SKIPPED_DEPS'] = [] env['HAS_CAIRO'] = False