12 lines
315 B
INI
12 lines
315 B
INI
|
import sys
|
||
|
|
||
|
# MSAN does not work with JIT.
|
||
|
if "msan" in config.available_features:
|
||
|
config.unsupported = True
|
||
|
|
||
|
# Requires native execution.
|
||
|
if "host-supports-jit" not in config.available_features:
|
||
|
config.unsupported = True
|
||
|
|
||
|
config.available_features.add(config.root.native_target.lower() + "-native-target")
|