forked from OSchip/llvm-project
15 lines
327 B
INI
15 lines
327 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 'native' not in config.available_features:
|
|
config.unsupported = True
|
|
|