Skip to content

Commit

Permalink
Adding aarch64 and arm64 support to rpsbproc
Browse files Browse the repository at this point in the history
Fix compile flags in build.sh to enable linux-aarch64.
Add linux-aarch64 and osx-arm64 to additional platforms.
  • Loading branch information
dslarm committed Nov 5, 2024
1 parent 7b8ba75 commit f232f70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions recipes/rpsbproc/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,11 @@ CONFIGURE_FLAGS="$CONFIGURE_FLAGS --without-dll --with-static-exe"
# Platform-specific flags
if [[ "$(uname)" = "Linux" ]]; then
# --with(out)-64:
# Compile in 64-bit mode instead of 32-bit.
# Compile in 64-bit mode instead of 32-bit on x86_64 platforms.
# Flag not available for osx build.
CONFIGURE_FLAGS="$CONFIGURE_FLAGS --with-64"
if [[ "$(arch)" = "x86_64" ]]; then
CONFIGURE_FLAGS="$CONFIGURE_FLAGS --with-64"
fi
# --with(out)-openmp:
# Enable OpenMP extensions for all projects.
# Does not work without hacks for OSX
Expand Down
3 changes: 3 additions & 0 deletions recipes/rpsbproc/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,6 @@ about:
extra:
identifiers:
- doi:10.1002/cpbi.90
additional-platforms:
- linux-aarch64
- osx-arm64

0 comments on commit f232f70

Please sign in to comment.