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 the native target to be configured in.
if 'llvm_has_native_target' not in config.available_features:
    config.unsupported = True

