diff --git a/SheepShaver/src/kpx_cpu/src/cpu/jit/jit-config.hpp b/SheepShaver/src/kpx_cpu/src/cpu/jit/jit-config.hpp index f75d5cda..1f537dd4 100644 --- a/SheepShaver/src/kpx_cpu/src/cpu/jit/jit-config.hpp +++ b/SheepShaver/src/kpx_cpu/src/cpu/jit/jit-config.hpp @@ -63,6 +63,7 @@ * Helpers to reach JIT backends headers **/ +#if ENABLE_DYNGEN #if defined(__powerpc__) || defined(__ppc__) #define JIT_TARGET ppc #endif @@ -91,11 +92,12 @@ #define JIT_TARGET m68k #endif #ifndef JIT_TARGET -#error "Unsupport architecture for JIT1" +#error "Unsupported architecture for JIT1" #endif #define JIT_PATH_CONCAT(X, Y) X/Y #define JIT_MAKE_HEADER(PATH, HEADER) #define JIT_TARGET_INCLUDE(HEADER) JIT_MAKE_HEADER(JIT_PATH_CONCAT(cpu/jit,JIT_TARGET),HEADER) +#endif #endif /* JIT_CONFIG_H */