Explorar el Código

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

Dan ELKOUBY hace 11 años
padre
commit
d1a30806da
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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