mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +00:00
We also need to catch OSError here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220058 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aa796b99bb
commit
e7b03ee85c
@ -36,13 +36,13 @@ def fixup_compiler_path(compiler):
|
||||
try:
|
||||
if path.endswith('/cc') and os.readlink(path) == 'clang':
|
||||
args[0] = path[:len(path)-2] + 'clang'
|
||||
except AttributeError:
|
||||
except (AttributeError, OSError):
|
||||
pass
|
||||
|
||||
try:
|
||||
if path.endswith('/c++') and os.readlink(path) == 'clang++':
|
||||
args[0] = path[:len(path)-3] + 'clang++'
|
||||
except AttributeError:
|
||||
except (AttributeError, OSError):
|
||||
pass
|
||||
|
||||
return ' '.join([pipes.quote(arg) for arg in args])
|
||||
|
Loading…
Reference in New Issue
Block a user