mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 14:22:26 +00:00
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:
parent
b76f5ba103
commit
ad8eef5a90
@ -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])
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user