re add error for unsupported JIT platforms
This commit is contained in:
parent
0d83e98e04
commit
3173e6e25d
|
@ -8,8 +8,10 @@
|
||||||
#include "ARMJIT_Internal.h"
|
#include "ARMJIT_Internal.h"
|
||||||
#if defined(__x86_64__)
|
#if defined(__x86_64__)
|
||||||
#include "ARMJIT_x64/ARMJIT_Compiler.h"
|
#include "ARMJIT_x64/ARMJIT_Compiler.h"
|
||||||
#else
|
#elif defined(__aarch64__)
|
||||||
#include "ARMJIT_A64/ARMJIT_Compiler.h"
|
#include "ARMJIT_A64/ARMJIT_Compiler.h"
|
||||||
|
#else
|
||||||
|
#error "The current target platform doesn't have a JIT backend"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "ARMInterpreter_ALU.h"
|
#include "ARMInterpreter_ALU.h"
|
||||||
|
|
Loading…
Reference in New Issue