12 lines · plain
1import sys2 3# MSAN does not work with JIT.4if "msan" in config.available_features:5 config.unsupported = True6 7# Requires native execution.8if "host-supports-jit" not in config.available_features:9 config.unsupported = True10 11config.available_features.add(config.root.native_target.lower() + "-native-target")12