summaryrefslogtreecommitdiff
path: root/make-mac.mk
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-09-30 14:48:07 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-09-30 14:48:07 -0700
commit0d0039674fefbfc14eb41f3bdbec7bf3e6dba9a5 (patch)
tree68c5b7885bd54fbf5981b9c21c6823f781424d86 /make-mac.mk
parent789046ca575e0aabe621c312832a8ccadf102989 (diff)
downloadinfinitytier-0d0039674fefbfc14eb41f3bdbec7bf3e6dba9a5.tar.gz
infinitytier-0d0039674fefbfc14eb41f3bdbec7bf3e6dba9a5.zip
Add new verb names, and fix some Mac compiler flags.
Diffstat (limited to 'make-mac.mk')
-rw-r--r--make-mac.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/make-mac.mk b/make-mac.mk
index c0b3f89d..6daa6aa0 100644
--- a/make-mac.mk
+++ b/make-mac.mk
@@ -58,8 +58,8 @@ ifeq ($(ZT_DEBUG),1)
# C25519 in particular is almost UNUSABLE in heavy testing without it.
ext/lz4/lz4.o node/Salsa20.o node/SHA512.o node/C25519.o node/Poly1305.o: CFLAGS = -Wall -O2 -g -pthread $(INCLUDES) $(DEFS)
else
- CFLAGS?=-O3 -fstack-protector
- CFLAGS+=$(ARCH_FLAGS) -Wall -flto -fPIE -fvectorize -pthread -mmacosx-version-min=10.7 -DNDEBUG -Wno-unused-private-field $(INCLUDES) $(DEFS)
+ CFLAGS?=-Ofast -fstack-protector
+ CFLAGS+=$(ARCH_FLAGS) -Wall -flto -fPIE -pthread -mmacosx-version-min=10.7 -DNDEBUG -Wno-unused-private-field $(INCLUDES) $(DEFS)
STRIP=strip
endif