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