Allow debug build in build_linux
This commit is contained in:
parent
852b0c5373
commit
9a8acb7091
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,12 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
RELARGS="-O3 -DNDEBUG"
|
||||
DBGARGS="-g -D_DEBUG"
|
||||
CURARGS="$RELARGS"
|
||||
|
||||
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 \
|
||||
clang++-6.0 -I . $CURARGS -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 \
|
||||
|
|
Loading…
Reference in a new issue