From ee44145406cbe2c1a77772c02683ed3f578c737d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 8 Nov 2015 02:44:54 +0100 Subject: Start adding counterparts to ARM ASM codepaths --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5dd866a..f65cd92 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,8 @@ else ifeq ($(platform), ctr) CC = $(DEVKITARM)/bin/arm-none-eabi-gcc$(EXE_EXT) CXX = $(DEVKITARM)/bin/arm-none-eabi-g++$(EXE_EXT) AR = $(DEVKITARM)/bin/arm-none-eabi-ar$(EXE_EXT) - CFLAGS += -DARM11 -D_3DS + ARM_ASM = 1 + CFLAGS += -DARM11 -D_3DS CFLAGS += -march=armv6k -mtune=mpcore -mfloat-abi=hard CFLAGS += -Wall -mword-relocations CFLAGS += -fomit-frame-pointer -ffast-math @@ -68,6 +69,10 @@ else CFLAGS += -D__WIN32__ -D__WIN32_LIBRETRO__ endif +ifeq ($(ARM_ASM), 1) +CFLAGS += -DARM_ASM +endif + CORE_DIR := ./src LIBRETRO_DIR := ./libretro -- cgit v1.2.3