Skip to content

Commit

Permalink
* Add build for linux-arm64 to presets for OpenBLAS (pull #726)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwatters authored and saudet committed May 12, 2019
1 parent 102ef1d commit 6f1642d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Add build for `linux-arm64` to presets for OpenBLAS ([pull #726](https://github.com/bytedeco/javacpp-presets/pull/726))
* Bundle complete binary packages of CPython itself for convenience ([issue #712](https://github.com/bytedeco/javacpp-presets/issues/712))
* Fix and refine mapping for `HoughLines`, `HoughLinesP`, and `HoughCircles` ([issue #717](https://github.com/bytedeco/javacpp-presets/issues/717))
* Add Python-enabled builds for TensorFlow via the `-python` and `-python-gpu` extensions
Expand Down
7 changes: 7 additions & 0 deletions openblas/cppbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,13 @@ case $PLATFORM in
export BINARY=32
export TARGET=ARMV6
;;
linux-arm64)
export CC="aarch64-linux-gnu-gcc -mabi=lp64"
export FC="aarch64-linux-gnu-gfortran"
export LDFLAGS="-Wl,-z,noexecstack"
export BINARY=64
export TARGET=ARMV8
;;
macosx-*)
patch -Np1 < ../../../OpenBLAS-macosx.patch
patch -Np1 -d ../OpenBLAS-$OPENBLAS_VERSION-nolapack/ < ../../../OpenBLAS-macosx.patch
Expand Down

0 comments on commit 6f1642d

Please sign in to comment.