Newest devkitARM requires building with hard float

This commit is contained in:
archshift 2015-05-09 18:50:30 -07:00
parent 7ab41f35d8
commit 4f36fe63ea

View File

@ -27,10 +27,10 @@ INCLUDES := source #include
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
# options for code generation # options for code generation
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
ARCH := -march=armv6k -mtune=mpcore ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard
CFLAGS := -g -Wall -O2 -mword-relocations -save-temps \ CFLAGS := -g -Wall -O2 -mword-relocations -save-temps \
-fomit-frame-pointer -ffast-math -mfloat-abi=softfp \ -fomit-frame-pointer -ffast-math \
$(ARCH) $(ARCH)
CFLAGS += $(INCLUDE) -DARM11 -D_3DS CFLAGS += $(INCLUDE) -DARM11 -D_3DS