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 ARM support #57

Closed
clausecker opened this issue Oct 10, 2022 · 0 comments · Fixed by #77
Closed

Add ARM support #57

clausecker opened this issue Oct 10, 2022 · 0 comments · Fixed by #77

Comments

@clausecker
Copy link

clausecker commented Oct 10, 2022

Please add support for 32 bit ARM targets. This can be achieved with the following patch:

diff --git a/configure.ac b/configure.ac
index 1b90e25..096afe7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,6 +40,9 @@ case "$my_arch" in
     mybits="64"
     mybits_install="64"
         ;;
+  *arm)
+    mybits="32"
+    ;;
   *aarch64)
     mybits="64"
     mybits_install="64"

Additionally, change *aarch64 to *aarch64|*arm64 to support ARM64 on FreeBSD.

freebsd-git pushed a commit to freebsd/freebsd-ports that referenced this issue Oct 15, 2022
- add case for armv7 to configure script
- adapt aarch64 case to arm64
  openca/libpki#57
- while we are at it, hook up test suite
- bump PORTREVISION

PR:		266955
MFH:		2022Q4
(cherry picked from commit e5a5d9c)
freebsd-git pushed a commit to freebsd/freebsd-ports that referenced this issue Oct 15, 2022
- add case for armv7 to configure script
- adapt aarch64 case to arm64
  openca/libpki#57
- while we are at it, hook up test suite
- bump PORTREVISION

PR:		266955
MFH:		2022Q4
netgate-git-updates pushed a commit to pfsense/FreeBSD-ports that referenced this issue Oct 25, 2022
- add case for armv7 to configure script
- adapt aarch64 case to arm64
  openca/libpki#57
- while we are at it, hook up test suite
- bump PORTREVISION

PR:		266955
MFH:		2022Q4
@opencrypto opencrypto linked a pull request Aug 12, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant