12 lines
259 B
C
12 lines
259 B
C
|
#if defined(__x86_64__)
|
||
|
#include "ARMJIT_x64/ARMJIT_Compiler.h"
|
||
|
#elif defined(__aarch64__)
|
||
|
#include "ARMJIT_A64/ARMJIT_Compiler.h"
|
||
|
#else
|
||
|
#error "The current target platform doesn't have a JIT backend"
|
||
|
#endif
|
||
|
|
||
|
namespace ARMJIT
|
||
|
{
|
||
|
extern Compiler* JITCompiler;
|
||
|
}
|