From 43b41d054e6c7d99f99d3e7db00a660b9a8ba8cc Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Mon, 5 Dec 2016 09:06:01 +1300 Subject: [PATCH] Added '-ffast-math' to space optimised targets, to eliminate linker warnings and further reduce size. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec0f39739..f12e502ec 100644 --- a/Makefile +++ b/Makefile @@ -770,7 +770,7 @@ OPTIMIZE = -Ofast endif LTO_BASE = -flto -fuse-linker-plugin LTO_FLAGS = $(LTO_BASE) $(OPTIMIZE) -NON_RT_LTO_FLAGS = $(LTO_BASE) -Os +NON_RT_LTO_FLAGS = $(LTO_BASE) -Os -ffast-math endif DEBUG_FLAGS = -ggdb3 -DDEBUG