mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
fed72984cb
This patch adds support for ORC JIT for mips/mips64 architecture. In common code $static is changed to __ORCstatic because on MIPS architecture "$" is a reserved character. Patch by Luka Ercegovcevic Differential Revision: https://reviews.llvm.org/D49665 llvm-svn: 341934
9 lines
261 B
INI
9 lines
261 B
INI
import sys
|
|
|
|
if config.root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64', 'mips', 'mipsel', 'mips64', 'mips64el']:
|
|
config.unsupported = True
|
|
|
|
# FIXME: These tests don't pass with the COFF rtld.
|
|
if sys.platform == 'win32':
|
|
config.unsupported = True
|