From be29591b51554127f1609f1abb60f9a839d03ccd Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 20 Apr 2015 18:47:30 +0200 Subject: [PATCH] Fix default build flags --- Makefile.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.mk b/Makefile.mk index 8a77abe..8116b37 100644 --- a/Makefile.mk +++ b/Makefile.mk @@ -50,7 +50,7 @@ BASE_OPTS = -O2 -ffast-math -march=armv7-a -mcpu=cortex-a8 -mtune=cortex-a8 -mf LINK_OPTS = -Wl,-O1 -Wl,--as-needed -Wl,--strip-all endif -ifneq ($(NOOPT),true) +ifeq ($(NOOPT),true) # No optimization flags BASE_OPTS = -O2 -ffast-math -fdata-sections -ffunction-sections endif