Don't crash if find_executable return None.

This was crashing when trying to run the tests on Windows.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-10-17 16:07:43 +00:00
parent b76f5ba103
commit ad8eef5a90

View File

@ -36,14 +36,14 @@ def fixup_compiler_path(compiler):
try: try:
if path.endswith('/cc') and os.readlink(path) == 'clang': if path.endswith('/cc') and os.readlink(path) == 'clang':
args[0] = path[:len(path)-2] + 'clang' args[0] = path[:len(path)-2] + 'clang'
except OSError: except AttributeError:
skip pass
try: try:
if path.endswith('/c++') and os.readlink(path) == 'clang++': if path.endswith('/c++') and os.readlink(path) == 'clang++':
args[0] = path[:len(path)-3] + 'clang++' args[0] = path[:len(path)-3] + 'clang++'
except OSError: except AttributeError:
skip pass
return ' '.join([pipes.quote(arg) for arg in args]) return ' '.join([pipes.quote(arg) for arg in args])