forked from OSchip/llvm-project
parent
328b1193b5
commit
fde87a0cdf
|
@ -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