aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMoyster <oysterized@gmail.com>2016-09-10 00:33:03 +0200
committerMoyster <oysterized@gmail.com>2016-09-10 00:33:03 +0200
commit7bd42c9fc7c3f553fd2b502249fbbfba462a1555 (patch)
treef1902f4495c8e8d9c3163115740e8ed5a1e02eaa /Makefile
parent31ac22197bd90b54ad4fc2150db8e33a34ba1cac (diff)
use -O3 compile flags
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 806eb322a..a54d936f4 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 -O2 -fomit-frame-pointer -std=gnu89
-HOSTCXXFLAGS = -O2
+HOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O3 -fomit-frame-pointer -std=gnu89
+HOSTCXXFLAGS = -O3
# Decide whether to build built-in, modular, or both.
# Normally, just do built-in.