mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
03b6e12fae
We can just split targets_to_build in one place and make it immutable. llvm-svn: 210496
11 lines
238 B
INI
11 lines
238 B
INI
import re
|
|
|
|
config.suffixes = ['.ll']
|
|
|
|
if not 'AArch64' in config.root.targets:
|
|
config.unsupported = True
|
|
|
|
# For now we don't test arm64-win32.
|
|
if re.search(r'cygwin|mingw32|win32', config.target_triple):
|
|
config.unsupported = True
|