Fix JIT enable logic

This commit is contained in:
Seg 2020-12-30 07:54:21 -08:00
parent 6d92f13bcd
commit 144b117886
1 changed files with 1 additions and 1 deletions

View File

@ -1661,7 +1661,7 @@ elif [[ "x$WANT_NATIVE_M68K" = "xyes" ]]; then
fi
dnl Enable JIT compiler, if possible.
if [[ "x$WANT_JIT" = "xyes" -a "x$CAN_JIT" ]]; then
if [[ "x$WANT_JIT" = "xyes" -a "x$CAN_JIT" = "xyes" ]]; then
JITSRCS="$JITSRCS ../uae_cpu/compiler/compemu_support.cpp ../uae_cpu/compiler/compemu_fpp.cpp compstbl.o cpustbl_nf.o"
DEFINES="$DEFINES -DUSE_JIT -DUSE_JIT_FPU"