Skip to content

Commit

Permalink
SKALED-1900 Build blake3 without debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
dimalit committed Aug 27, 2024
1 parent 3b83e89 commit 32e3309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2350,12 +2350,12 @@ if [ "$WITH_BLAKE3" = "yes" ]; then
git checkout master
if [ "$ARCH" = "x86_or_x64" ]; then
if [ "$UNIX_SYSTEM_NAME" = "Darwin" ]; then
gcc -c -O3 -g blake3.c blake3_dispatch.c blake3_portable.c \
gcc -c -O3 blake3.c blake3_dispatch.c blake3_portable.c \
blake3_sse2_x86-64_unix.S blake3_sse41_x86-64_unix.S blake3_avx2_x86-64_unix.S \
blake3_avx512_x86-64_unix.S
ar rcs libblake3.a *.o
else
gcc -c -O3 -g blake3.c blake3_dispatch.c blake3_portable.c \
gcc -c -O3 blake3.c blake3_dispatch.c blake3_portable.c \
blake3_sse2_x86-64_unix.S blake3_sse41_x86-64_unix.S blake3_avx2_x86-64_unix.S \
blake3_avx512_x86-64_unix.S
ar rcs libblake3.a *.o
Expand Down

0 comments on commit 32e3309

Please sign in to comment.