2014-06-05 08:25:30 +08:00
|
|
|
if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
|
2012-11-20 01:57:07 +08:00
|
|
|
config.unsupported = True
|
|
|
|
|
2014-02-25 17:31:00 +08:00
|
|
|
# CMake and autoconf diverge in naming or host_arch
|
2014-06-18 01:04:42 +08:00
|
|
|
if 'powerpc64' in config.root.target_triple:
|
|
|
|
config.unsupported = True
|
|
|
|
|
2014-04-29 23:02:40 +08:00
|
|
|
if 'aarch64' in config.root.target_triple \
|
|
|
|
or 'arm64' in config.root.target_triple:
|
|
|
|
config.unsupported = True
|
2014-02-25 17:31:00 +08:00
|
|
|
|
2013-08-16 08:37:11 +08:00
|
|
|
if 'hexagon' in config.root.target_triple:
|
2013-03-26 04:02:14 +08:00
|
|
|
config.unsupported = True
|
2013-09-13 18:59:01 +08:00
|
|
|
|
|
|
|
# ExecutionEngine tests are not expected to pass in a cross-compilation setup.
|
|
|
|
if 'native' not in config.available_features:
|
|
|
|
config.unsupported = True
|