From 3f9e0a630bd72c58df546cb4c4c837c37d429659 Mon Sep 17 00:00:00 2001 From: fincs Date: Wed, 3 Dec 2014 21:24:22 +0100 Subject: [PATCH] Switch to -mfloat-abi=hard, bump version to 0.2.0 --- libctru/Makefile | 4 ++-- template/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 \