mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
53700188da
Differential Revision: https://reviews.llvm.org/D94616
11 lines
403 B
INI
11 lines
403 B
INI
from lit.llvm.subst import ToolSubst
|
|
|
|
if 'AArch64' not in config.root.targets:
|
|
config.unsupported = True
|
|
|
|
fc = ToolSubst('FileCheck', unresolved='fatal')
|
|
# Insert this first. Then, we'll first update the blank FileCheck command; then,
|
|
# the default substitution of FileCheck will replace it to its full path.
|
|
config.substitutions.insert(0, (fc.regex,
|
|
'FileCheck --allow-unused-prefixes=false'))
|