Merge pull request #587 from ferebee/main

fix architecture detection for Apple Silicon
This commit is contained in:
Zack 2023-09-03 19:35:53 -07:00 committed by GitHub
commit f91c7a9948
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -587,6 +587,7 @@ main() {
"x86_64" ) croc_arch="64bit";;
"amd64" ) croc_arch="64bit";;
"aarch64" ) croc_arch="ARM64";;
"arm64" ) croc_arch="ARM64";;
"armv7l" ) croc_arch="ARM";;
"i686" ) croc_arch="32bit";;
* ) croc_arch="unknown";;