mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
f433beee88
Disabling remote MCJIT tests on ARM again, as they're still failing when self-hosting on ARM, despite all my tests. At least now we have more info on what message it's breaking and what is going on. Investigating. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199310 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
290 B
INI
9 lines
290 B
INI
if 'armv4' in config.root.target_triple or \
|
|
'armv5' in config.root.target_triple:
|
|
config.unsupported = True
|
|
|
|
# This is temporary, until Remote MCJIT works on ARM
|
|
# See http://llvm.org/bugs/show_bug.cgi?id=18057
|
|
if 'armv7' in config.root.target_triple:
|
|
config.unsupported = True
|