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
No related branches found
No related tags found
No related merge requests found
...@@ -323,7 +323,7 @@ ifdef DEBUG ...@@ -323,7 +323,7 @@ ifdef DEBUG
CFLAGS += -ggdb CFLAGS += -ggdb
CFLAGS += -D_DEBUG CFLAGS += -D_DEBUG
else # RELEASE else # RELEASE
CFLAGS := -O3 $(CFLAGS) CFLAGS := -O2 $(CFLAGS)
endif endif
-include targets.mk -include targets.mk
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment