Browse Source

Restore the optimization level to -O3 by default.

Viral B. Shah 8 years ago
parent
commit
f8d64df596
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Make.inc

+ 1 - 1
Make.inc

@@ -100,7 +100,7 @@ override ARCH := amd64
 endif
 
 # The optimization flag may be overriden with the environment variable CFLAGS.
-CFLAGS ?= -O2
+CFLAGS ?= -O3
 
 ifneq (,$(findstring MINGW,$(OS)))
 override OS=WINNT