move optimzations back to -O2, not -O3.

This commit is contained in:
Joris Vink 2018-07-09 09:45:10 +02:00
parent bc1206c4fc
commit 570f9ac986
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ endif
ifneq ("$(NOOPT)", "")
CFLAGS+=-O0
else
CFLAGS+=-O3
CFLAGS+=-O2
endif
ifneq ("$(NOSENDFILE)", "")