llvm-project
11 строк · 315.0 Байт
1import sys
2
3# MSAN does not work with JIT.
4if "msan" in config.available_features:
5config.unsupported = True
6
7# Requires native execution.
8if "host-supports-jit" not in config.available_features:
9config.unsupported = True
10
11config.available_features.add(config.root.native_target.lower() + "-native-target")
12