aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoyster <oysterized@gmail.com>2017-06-01 22:37:43 +0200
committerMister Oyster <oysterized@gmail.com>2017-06-02 03:28:38 +0200
commit47ba3dfe2a30bf53a68cec82301b2a3964800bf7 (patch)
treebd8e6ed7d3b71eeb4ec3d050bb7786b5589e7378
parent40db3472419ce33c837cda0c052b21841d68f864 (diff)
Revert "use -O3 compile flags"
This reverts commit 7bd42c9fc7c3f553fd2b502249fbbfba462a1555.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d0b291fad..76751ed0d 100644
--- a/Makefile
+++ b/Makefile
@@ -241,8 +241,8 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
HOSTCC = ccache gcc
HOSTCXX = g++
-HOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O3 -fomit-frame-pointer -std=gnu89
-HOSTCXXFLAGS = -O3
+HOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu89
+HOSTCXXFLAGS = -O2
# Decide whether to build built-in, modular, or both.
# Normally, just do built-in.