10 lines
388 B
Bash
Executable file
10 lines
388 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
clang++-6.0 -c -march=skylake-avx512 crypto/poly1305/poly1305-x64-linux.s crypto/chacha20/chacha20-x64-linux.s
|
|
clang++-6.0 -I . -O3 -DNDEBUG -DWITH_NETWORK_BSD=1 -mssse3 -pthread -lrt -o tunsafe \
|
|
tunsafe_amalgam.cpp \
|
|
crypto/aesgcm/aesni_gcm-x64-linux.s \
|
|
crypto/aesgcm/aesni-x64-linux.s \
|
|
crypto/aesgcm/ghash-x64-linux.s \
|
|
chacha20-x64-linux.o \
|
|
poly1305-x64-linux.o \
|