diff options
| author | Adam Ierymenko <[email protected]> | 2020-08-21 09:56:53 -0700 |
|---|---|---|
| committer | Adam Ierymenko <[email protected]> | 2020-08-21 09:56:53 -0700 |
| commit | 3fd8efe6423ca6c0e089bc14e090dd7d2eccca32 (patch) | |
| tree | 4b3ad6538edf89a3b72526119cfac86971d02f74 /make-mac.mk | |
| parent | 06730c7d1d64c43fe41d0a760e92a7cf461f37b0 (diff) | |
AES builds now
Diffstat (limited to 'make-mac.mk')
| -rw-r--r-- | make-mac.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/make-mac.mk b/make-mac.mk index f44acabe..c608e037 100644 --- a/make-mac.mk +++ b/make-mac.mk @@ -1,10 +1,9 @@ - CC=clang CXX=clang++ INCLUDES= DEFS= LIBS= -ARCH_FLAGS= +ARCH_FLAGS=-msse -msse2 -mssse3 -msse4 -msse4.1 -maes -mpclmul CODESIGN=echo PRODUCTSIGN=echo CODESIGN_APP_CERT= @@ -67,7 +66,7 @@ endif # Debug mode -- dump trace output, build binary with -g ifeq ($(ZT_DEBUG),1) ZT_TRACE=1 - CFLAGS+=-Wall -g $(INCLUDES) $(DEFS) + CFLAGS+=-Wall -g $(INCLUDES) $(DEFS) $(ARCH_FLAGS) STRIP=echo # The following line enables optimization for the crypto code, since # C25519 in particular is almost UNUSABLE in heavy testing without it. |
