diff --git a/src/ARMJIT.cpp b/src/ARMJIT.cpp index 561fabbb..208801ef 100644 --- a/src/ARMJIT.cpp +++ b/src/ARMJIT.cpp @@ -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"