1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

Disable Remote MCJIT tests on ARM

The communication protocol is unstable on ARM when compiled
with Clang, which is disrupting the self-hosting buildbots that
are going to be added this week. I'm working on a solution, but
remote MCJIT is not high-priority for ARM at the moment, so it
might take a while.

llvm-svn: 196257
This commit is contained in:
Renato Golin 2013-12-03 08:39:15 +00:00
parent 623166a4f9
commit fb4bd004c0

View File

@ -1,3 +1,2 @@
if 'armv4' in config.root.target_triple or \
'armv5' in config.root.target_triple:
if 'arm' in config.root.target_triple:
config.unsupported = True