diff options
author | paradadf | 2019-08-02 14:03:22 -0400 |
---|---|---|
committer | GitHub | 2019-08-02 14:03:22 -0400 |
commit | df791afeb727f56288d31af9081949721c3b41fb (patch) | |
tree | fb2acca9469d4ef7ce152577c47c6fdf94a5def8 /Makefile | |
parent | e5954a7e3abf8eacded2c5f8fd06a6306630f3b0 (diff) | |
download | snes9x2005-df791afeb727f56288d31af9081949721c3b41fb.tar.gz snes9x2005-df791afeb727f56288d31af9081949721c3b41fb.tar.bz2 snes9x2005-df791afeb727f56288d31af9081949721c3b41fb.zip |
Add ARM platform
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -70,6 +70,25 @@ ifeq ($(platform), unix) fpic := -fPIC SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T CFLAGS += -fno-builtin -fno-exceptions -ffunction-sections +# ARM +else ifneq (,$(findstring armv,$(platform))) + TARGET := $(TARGET_NAME)_libretro.so + fpic := -fPIC + SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T + CC = gcc + CXX = g++ + PLATFORM_DEFINES += -marm + ifneq (,$(findstring softfloat,$(platform))) + PLATFORM_DEFINES += -mfloat-abi=softfp + else ifneq (,$(findstring hardfloat,$(platform))) + PLATFORM_DEFINES += -mfloat-abi=hard + endif + ifneq (,$(findstring neon,$(platform))) + FLAGS += -mfpu=neon + ASFLAGS += -mfpu=neon + HAVE_NEON = 1 + endif + PLATFORM_DEFINES += -DARM else ifeq ($(platform), linux-portable) TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC -nostdlib |