Skip to content

Commit

Permalink
Merge pull request #75 from IdioticMadman/fix_mac_m1_build
Browse files Browse the repository at this point in the history
fix mac m1 build android failed
  • Loading branch information
leenjewel committed Nov 28, 2023
2 parents 663da9e + 5cb3846 commit 6fbdf65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build-android-common.sh
Expand Up @@ -52,7 +52,7 @@ function get_toolchain() {
HOST_ARCH=$(uname -m)
case ${HOST_ARCH} in
i?86) HOST_ARCH=x86 ;;
x86_64 | amd64) HOST_ARCH=x86_64 ;;
x86_64 | amd64 | arm64) HOST_ARCH=x86_64 ;;
esac

echo "${HOST_OS}-${HOST_ARCH}"
Expand Down

0 comments on commit 6fbdf65

Please sign in to comment.