mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-21 21:31:00 -06:00
re add error for unsupported JIT platforms
This commit is contained in:
@ -8,8 +8,10 @@
|
||||
#include "ARMJIT_Internal.h"
|
||||
#if defined(__x86_64__)
|
||||
#include "ARMJIT_x64/ARMJIT_Compiler.h"
|
||||
#else
|
||||
#elif defined(__aarch64__)
|
||||
#include "ARMJIT_A64/ARMJIT_Compiler.h"
|
||||
#else
|
||||
#error "The current target platform doesn't have a JIT backend"
|
||||
#endif
|
||||
|
||||
#include "ARMInterpreter_ALU.h"
|
||||
|
Reference in New Issue
Block a user