From: fincs Date: Wed, 3 Dec 2014 20:24:22 +0000 (+0100) Subject: Switch to -mfloat-abi=hard, bump version to 0.2.0 X-Git-Tag: v0.2.0~6 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=3f9e0a630bd72c58df546cb4c4c837c37d429659;p=corbenik%2Fctrulib.git Switch to -mfloat-abi=hard, bump version to 0.2.0 --- diff --git a/libctru/Makefile b/libctru/Makefile index d1174a3..31cd434 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -9,7 +9,7 @@ endif include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 0 -export LIBCTRU_MINOR := 1 +export LIBCTRU_MINOR := 2 export LIBCTRU_PATCH := 0 @@ -36,7 +36,7 @@ INCLUDES := include #--------------------------------------------------------------------------------- # options for code generation #--------------------------------------------------------------------------------- -ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=softfp +ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard CFLAGS := -g -Wall -O2 -mword-relocations \ -fomit-frame-pointer -ffast-math \ diff --git a/template/Makefile b/template/Makefile index c4c758e..c21562a 100644 --- a/template/Makefile +++ b/template/Makefile @@ -35,7 +35,7 @@ INCLUDES := include #--------------------------------------------------------------------------------- # options for code generation #--------------------------------------------------------------------------------- -ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=softfp +ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard CFLAGS := -g -Wall -O2 -mword-relocations \ -fomit-frame-pointer -ffast-math \