[x64] Enable Android x86-64 support (not tested!)

This commit is contained in:
David Guillen Fandos 2021-11-06 12:39:16 +01:00
parent aa52f960c8
commit c0804fa48d
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@ else ifeq ($(TARGET_ARCH),x86)
COREFLAGS += -DMMAP_JIT_CACHE COREFLAGS += -DMMAP_JIT_CACHE
CPU_ARCH := x86_32 CPU_ARCH := x86_32
HAVE_DYNAREC := 1 HAVE_DYNAREC := 1
else ifeq ($(TARGET_ARCH),x86_64)
COREFLAGS += -DMMAP_JIT_CACHE
CPU_ARCH := x86_32
HAVE_DYNAREC := 1
endif endif
ifeq ($(HAVE_DYNAREC),1) ifeq ($(HAVE_DYNAREC),1)