17 lines
431 B
INI
17 lines
431 B
INI
import sys
|
|
|
|
# FIXME: llvm orc does not support the COFF rtld.
|
|
if sys.platform == 'win32':
|
|
config.unsupported = True
|
|
|
|
# MSAN does not work with JIT.
|
|
if 'msan' in config.available_features:
|
|
config.unsupported = True
|
|
|
|
# Requires native execution.
|
|
if 'host-supports-jit' not in config.available_features:
|
|
config.unsupported = True
|
|
|
|
config.available_features.add(
|
|
config.root.native_target.lower() + '-native-target')
|