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 support for Linux aarch64 architecture (ARM) #1100

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
Next Next commit
Add support for aarch64 architecture on Linux
  • Loading branch information
markphip committed Feb 24, 2024
commit 0abeb8ba6e97a90103e1bcbec5c6d1c434f1d24b
3 changes: 3 additions & 0 deletions HEN_HOUSE/scripts/config.guess
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,9 @@ EOF
sparc:Linux:*:* | sparc64:Linux:*:*)
echo ${UNAME_MACHINE}-unknown-linux-gnu
exit 0 ;;
aarch64:Linux:*:*)
echo aarch64-unknown-linux-gnu
exit 0 ;;
x86_64:Linux:*:*)
echo x86_64-unknown-linux-gnu
exit 0 ;;
Expand Down