diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2020-02-04 18:50:16 +0100 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-04-26 13:05:11 +0200 |
commit | 2dbb9840fb4bba05d14d4df526c6a8ff2051d85c (patch) | |
tree | 30ad071cfd002676696f0d3e12bef90cc042c4d6 /src | |
parent | 899cf97c51578e5c9ea83d3e81b3c7a54595666a (diff) |
re add error for unsupported JIT platforms
Diffstat (limited to 'src')
-rw-r--r-- | src/ARMJIT.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ARMJIT.cpp b/src/ARMJIT.cpp index 561fabb..208801e 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" |