Skip to content
Snippets Groups Projects
Commit 6af059ab authored by deuce's avatar deuce
Browse files

Reduce RELEASE optimizations to -O2 from -O3

-O3 causes problems on some Ubuntu.

Thanks RuneMaster!
parent 00f25491
Branches
Tags
No related merge requests found
......@@ -323,7 +323,7 @@ ifdef DEBUG
CFLAGS += -ggdb
CFLAGS += -D_DEBUG
else # RELEASE
CFLAGS := -O3 $(CFLAGS)
CFLAGS := -O2 $(CFLAGS)
endif
-include targets.mk
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment