This is an automated email from the ASF dual-hosted git repository.
manuseth pushed a commit to branch acl-build
in repository https://gitbox.apache.org/repos/asf/mxnet.git
The following commit(s) were added to refs/heads/acl-build by this push:
new e9f92b57b1 copy openblas binary
e9f92b57b1 is described below
commit e9f92b57b103a64ed7fa990c43ce1475b9907e39
Author: Ubuntu <[email protected]>
AuthorDate: Fri Jun 23 00:37:07 2023 +0000
copy openblas binary
---
tools/staticbuild/build_lib_cmake.sh | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/tools/staticbuild/build_lib_cmake.sh
b/tools/staticbuild/build_lib_cmake.sh
index 5c1d39c995..5b9f39cdb6 100755
--- a/tools/staticbuild/build_lib_cmake.sh
+++ b/tools/staticbuild/build_lib_cmake.sh
@@ -44,9 +44,7 @@ rm -rf lib; mkdir lib;
if [[ $PLATFORM == 'linux' ]]; then
cp -L build/libmxnet.so lib/libmxnet.so
cp -L $(ldd lib/libmxnet.so | grep libgfortran | awk '{print $3}') lib/
- if [[ ! $ARCH == 'aarch64' ]]; then
- cp -L staticdeps/lib/libopenblas.so lib/libopenblas.so.0
- fi
+ cp -L staticdeps/lib/libopenblas.so lib/libopenblas.so.0
elif [[ $PLATFORM == 'darwin' ]]; then
cp -L build/libmxnet.dylib lib/libmxnet.dylib
fi