From 5cce438b3e53292bf9197bbf28b387700e4e7d61 Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Tue, 19 Jan 2016 01:29:13 +0000 Subject: remove some gcc opts - * -fgcse-sm -fgcse-las - let gcc decide via O3 * -ffunction-sections / -fpeel-loops / -funroll-loops (normally only used when profiling shows there are actual benefits - unrolling loops may not be of benefit on all targets) * -fgcse-after-reload / -fweb (already enabled by -O3) * a few duplicate -fomit-frame-pointer / -ffast-math --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a50173e..a8d1875 100644 --- a/Makefile +++ b/Makefile @@ -18,10 +18,7 @@ ifeq ($(platform), unix) TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC SHARED := -shared -Wl,--version-script=libretro/link.T -Wl,--no-undefined - CFLAGS += -fno-builtin \ - -fno-exceptions -ffunction-sections \ - -fomit-frame-pointer -fgcse-sm -fgcse-las -fgcse-after-reload \ - -fweb -fpeel-loops + CFLAGS += -fno-builtin -fno-exceptions else ifeq ($(platform), osx) TARGET := $(TARGET_NAME)_libretro.dylib fpic := -fPIC @@ -153,4 +150,4 @@ clean: .PHONY: clean -endif \ No newline at end of file +endif -- cgit v1.2.3