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