Commit ee583adc authored by mattip's avatar mattip
Browse files

use system openblas on aarch64

parent 1a51f2a9
......@@ -13,6 +13,7 @@ set -e
MULTIBUILD_DIR=$(dirname "${BASH_SOURCE[0]}")
if [ $(uname) == "Darwin" ]; then IS_OSX=1; fi
if [ "$(PLAT)" == "aarch64" ]; then IS_AARCH64=1; fi
# Work round bug in travis xcode image described at
# https://github.com/direnv/direnv/issues/210
......
......@@ -94,6 +94,9 @@ function build_openblas {
if [ -n "$IS_OSX" ]; then
brew install openblas
brew link --force openblas
elif [-n "$IS_AARCH64"]; then
sudo apt install libopenblas-dev
return;
else
mkdir -p $ARCHIVE_SDIR
local plat=${1:-${PLAT:-x86_64}}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment