Fix configure.ac typo that failed to enable dynamic core on ARM targets

This commit is contained in:
Jonathan Campbell
2021-04-01 11:36:57 -07:00
parent 9bb82cf415
commit 342c346727

View File

@@ -867,7 +867,7 @@ AC_MSG_CHECKING(whether recompiling cpu core will be enabled)
if test x$enable_dynrec = xno -o x$enable_dynamic_core = xno; then
AC_MSG_RESULT(no)
# test for MIPS32 is missing from this Dynamic Recompiler whitelist
elif test x$c_targetcpu = xx86 -o x$c_targetcpu = xx86_64 -o x$c_targetcpu = arm; then
elif test x$c_targetcpu = xx86 -o x$c_targetcpu = xx86_64 -o x$c_targetcpu = xarm; then
AC_DEFINE(C_DYNREC,1)
AC_MSG_RESULT(yes)
else