diff options
author | Andy Pilate <cubox@cubox.me> | 2013-07-06 22:54:45 +0200 |
---|---|---|
committer | Andy Pilate <cubox@cubox.me> | 2013-07-06 22:54:45 +0200 |
commit | 9eec6adc8ca939f66e8e2fbef0b9087fc701d451 (patch) | |
tree | 0365e0f0a0764f1f12a575283a62a3353e39c409 | |
parent | 5c543b3b4ad9320968cf9c442564eaad380bb5cf (diff) | |
download | infinitytier-9eec6adc8ca939f66e8e2fbef0b9087fc701d451.tar.gz infinitytier-9eec6adc8ca939f66e8e2fbef0b9087fc701d451.zip |
-O6 Do not exist and is the same as -O3
-rw-r--r-- | Makefile.linux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.linux b/Makefile.linux index 2705903c..b5e4ccec 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -6,7 +6,7 @@ ARCH=$(shell uname -m) DEFS=-DZT_ARCH="$(ARCH)" -DZT_OSNAME="linux" -DZT_TRACE # Uncomment for a release optimized build -CFLAGS=-Wall -O6 -fno-unroll-loops -pthread $(INCLUDES) -DNDEBUG $(DEFS) +CFLAGS=-Wall -O3 -fno-unroll-loops -pthread $(INCLUDES) -DNDEBUG $(DEFS) STRIP=strip --strip-all # Uncomment for a debug build |