Skip to content

Commit 4702ab5

Browse files
authored
Fix arm not finding blas library (#617)
1 parent ff416eb commit 4702ab5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/buildArangoDB312.fish

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ end
3939

4040
if test "$ARCH" = "x86_64"
4141
set -xg LAPACK_LIB_PATH "/usr/lib/x86_64-linux-gnu/lapack/liblapack.a"
42+
set -xg BLAS_LIB_PATH "/usr/lib/x86_64-linux-gnu/blas/libblas.a"
4243
else
4344
set -xg LAPACK_LIB_PATH "/usr/lib/aarch64-linux-gnu/lapack/liblapack.a"
45+
set -xg BLAS_LIB_PATH "/usr/lib/aarch64-linux-gnu/blas/libblas.a"
4446
end
4547

4648
set -l pie ""
@@ -60,7 +62,8 @@ set -g FULLARGS $argv \
6062
-DUSE_STRICT_OPENSSL_VERSION=$USE_STRICT_OPENSSL \
6163
-DBUILD_REPO_INFO=$BUILD_REPO_INFO \
6264
-DARANGODB_BUILD_DATE="$ARANGODB_BUILD_DATE" \
63-
-DLAPACK_LIBRARIES="$LAPACK_LIB_PATH"
65+
-DLAPACK_LIBRARIES="$LAPACK_LIB_PATH" \
66+
-DBLAS_LIBRARIES="$BLAS_LIB_PATH"
6467

6568
if test "$MAINTAINER" = "On"
6669
set -g FULLARGS $FULLARGS \

0 commit comments

Comments
 (0)