Parcourir la Source

Fix epic fail in optimization flags
Benchmarks show that -O3 and -Ofast are equally fast
PS: Please hit me

Dan ELKOUBY il y a 11 ans
Parent
commit
d1a30806da
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -2,7 +2,7 @@ DEBUG = FALSE
 GCC = nspire-gcc
 GCCFLAGS = -Wall -W -marm
 ifeq ($(DEBUG),FALSE)
-	GCCFLAGS += -Os
+	GCCFLAGS += -Ofast
 else
 	GCCFLAGS += -O0 -g
 	LDFLAGS += --debug