diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-07-06 14:20:32 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-07-06 14:20:32 -0700 |
| commit | 0a7a8b415d9d61f9c6bf725313881d14d8767a10 (patch) | |
| tree | 0365e0f0a0764f1f12a575283a62a3353e39c409 /Makefile.linux | |
| parent | 2fffdfdaf50f892976b9586ccf0a40a306bc34a1 (diff) | |
| parent | 9eec6adc8ca939f66e8e2fbef0b9087fc701d451 (diff) | |
| download | infinitytier-0a7a8b415d9d61f9c6bf725313881d14d8767a10.tar.gz infinitytier-0a7a8b415d9d61f9c6bf725313881d14d8767a10.zip | |
Merge pull request #5 from Cubox-/master
The -O6 flag is useless. -O3 will do the same.
Diffstat (limited to 'Makefile.linux')
| -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 |
