diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-03-20 14:44:13 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-03-20 14:44:13 -0700 |
commit | 70b736f440f8ffaf7c8047a722d3d1339019b724 (patch) | |
tree | 539f3a536f8d175c5aecb2aa406999917d8cd124 | |
parent | 97e6b3814441343c4bfcd0b9a434aeee8e041b04 (diff) | |
download | infinitytier-70b736f440f8ffaf7c8047a722d3d1339019b724.tar.gz infinitytier-70b736f440f8ffaf7c8047a722d3d1339019b724.zip |
Put mac back to release default build flags.
-rw-r--r-- | make-mac.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make-mac.mk b/make-mac.mk index bef8b71b..559ef2be 100644 --- a/make-mac.mk +++ b/make-mac.mk @@ -23,12 +23,12 @@ endif #DEFS+=-DZT_TRACE -DZT_LOG_STDOUT # Uncomment for a release optimized universal binary build -#CFLAGS=-arch i386 -arch x86_64 -Wall -O3 -flto -fPIE -fvectorize -fstack-protector -pthread -mmacosx-version-min=10.6 -DNDEBUG -Wno-unused-private-field $(INCLUDES) $(DEFS) -#STRIP=strip +CFLAGS=-arch i386 -arch x86_64 -Wall -O3 -flto -fPIE -fvectorize -fstack-protector -pthread -mmacosx-version-min=10.6 -DNDEBUG -Wno-unused-private-field $(INCLUDES) $(DEFS) +STRIP=strip # Uncomment for a debug build -CFLAGS=-Wall -g -pthread -DZT_TRACE -DZT_LOG_STDOUT $(INCLUDES) $(DEFS) -STRIP=echo +#CFLAGS=-Wall -g -pthread -DZT_TRACE -DZT_LOG_STDOUT $(INCLUDES) $(DEFS) +#STRIP=echo CXXFLAGS=$(CFLAGS) -fno-rtti |