Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add linux-aarch64 and osx-arm64 support to rpsbproc #51929

Merged
merged 5 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading