Makefile fix to enable build for "unix-armv7-hardfloat-neon"

This commit is contained in:
zoltanvb 2022-07-29 07:38:51 +02:00
parent 5d0ae2be2c
commit a8d61956ec
2 changed files with 5 additions and 0 deletions

View File

@ -89,6 +89,8 @@ ifneq (,$(findstring unix,$(platform)))
# Generic ARM
ifneq (,$(findstring armv,$(platform)))
ARCH = arm
USE_DYNAREC = 1
DESMUME_JIT_ARM = 1
CXXFLAGS += -DUSE_POSIX_MEMALIGN -D__RETRO_ARM__
ifneq (,$(findstring cortexa5,$(platform)))
@ -107,6 +109,9 @@ ifneq (,$(findstring unix,$(platform)))
else ifneq (,$(findstring hardfloat,$(platform)))
CXXFLAGS += -mfloat-abi=hard
endif
ifneq (,$(findstring neon,$(platform)))
HAVE_NEON = 1
endif
CXXFLAGS += -DARM
else
DESMUME_JIT ?= 1

Binary file not shown.