Index: compiler-rt/trunk/test/lit.common.cfg =================================================================== --- compiler-rt/trunk/test/lit.common.cfg +++ compiler-rt/trunk/test/lit.common.cfg @@ -61,7 +61,8 @@ config.environment['PATH'] = path # Help MSVS link.exe find the standard libraries. -if platform.system() == 'Windows': +# Make sure we only try to use it when targetting Windows. +if platform.system() == 'Windows' and '-win' in config.target_triple: config.environment['LIB'] = os.environ['LIB'] # Use ugly construction to explicitly prohibit "clang", "clang++" etc.