Skip to content

Commit

Permalink
skaled 1900 update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
olehnikolaiev committed Jan 9, 2025
1 parent 66f534a commit f88dfc8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions deps/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2352,17 +2352,20 @@ if [ "$WITH_BLAKE3" = "yes" ]; then
git fetch
git checkout master
if [ "$ARCH" = "x86_or_x64" ]; then
BLAKE_DEBUG_OPTION=""
if [ "$DEBUG" = "1" ]; then
BLAKE_DEBUG_OPTION="-g"
fi
if [ "$UNIX_SYSTEM_NAME" = "Darwin" ]; then
gcc -c -O3 -g blake3.c blake3_dispatch.c blake3_portable.c \
gcc -c -O3 ${BLAKE_DEBUG_OPTION} 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 ${BLAKE_DEBUG_OPTION} 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
fi
fi
#$MAKE ${PARALLEL_MAKE_OPTIONS} depend
#$MAKE depend
Expand Down

0 comments on commit f88dfc8

Please sign in to comment.