5 | ("AArch64" in targets)
8 | ("PowerPC" in targets)
9 | ("SystemZ" in targets)
11 config.unsupported = True
13 # FIXME: autoconf and cmake produce different arch names. We should normalize
14 # them before getting here.
15 if root.host_arch not in [
29 config.unsupported = True
31 if "i386-apple-darwin" in root.target_triple:
32 config.unsupported = True
34 if "powerpc" in root.target_triple and not "powerpc64" in root.target_triple:
35 config.unsupported = True
37 # ExecutionEngine tests are not expected to pass in a cross-compilation setup.
38 if "native" not in config.available_features:
39 config.unsupported = True