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

config.available_features.add(
        config.root.native_target.lower() + '-native-target')
