forked from OSchip/llvm-project
Fix lit config for disabled MCJIT tests on ARM
Separating permanent from temporary targets, added the bug that will fix the temporary (PR18057). llvm-svn: 196274
This commit is contained in:
parent
00dcc43b56
commit
2b22f6ae96
|
@ -1,2 +1,8 @@
|
|||
if 'arm' in config.root.target_triple:
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue