mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
Don't pattern match "clang-" as it may be part of a tool name with a
triple suffix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122779 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b020808f0d
commit
fd1ed5f4c4
@ -155,8 +155,8 @@ for sub in ['llvmgcc', 'llvmgxx', 'emitir', 'compile_cxx', 'compile_c',
|
||||
# tools that might happen to be in the user's PATH. Thus this list
|
||||
# includes every tool placed in $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
|
||||
# (llvm_tools_dir in lit parlance).
|
||||
# Don't match 'bugpoint-'.
|
||||
for pattern in [r"\bbugpoint\b(?!-)", r"\bclang\b",
|
||||
# Don't match 'bugpoint-' or 'clang-'.
|
||||
for pattern in [r"\bbugpoint\b(?!-)", r"\bclang\b(?!-)",
|
||||
r"\bedis\b", r"\bgold\b",
|
||||
r"\bllc\b", r"\blli\b",
|
||||
r"\bllvm-ar\b", r"\bllvm-as\b",
|
||||
|
Loading…
Reference in New Issue
Block a user