[Scons] On Windows, print compilation architecture during build process

This helps in debugging certain compilation / linker issues
This commit is contained in:
Ray Speth 2014-07-30 16:59:11 +00:00
parent 169e6f1c11
commit 28d389b120

View file

@ -131,6 +131,7 @@ if os.name == 'nt':
toolchain = ['intelc'] # note: untested
extraEnvArgs['TARGET_ARCH'] = pickCompilerEnv['target_arch']
print 'INFO: Compiling for architecture:', pickCompilerEnv['target_arch']
print 'INFO: Compiling using the following toolchain(s):', repr(toolchain)
else: