[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] config.guess: Fix aarch64 macOS detection with GNU uname
From: |
Dmitry V. Levin |
Subject: |
Re: [PATCH] config.guess: Fix aarch64 macOS detection with GNU uname |
Date: |
Mon, 22 Mar 2021 04:22:15 +0300 |
On Sun, Mar 21, 2021 at 09:23:45AM -0400, me@diatr.us wrote:
> From: Hayden <me@diatr.us>
>
> ---
> config.guess | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/config.guess b/config.guess
> index 1972fda..7a74216 100755
> --- a/config.guess
> +++ b/config.guess
> @@ -1362,6 +1362,7 @@ EOF
> UNAME_PROCESSOR=$(uname -p)
> case $UNAME_PROCESSOR in
> unknown) UNAME_PROCESSOR=powerpc ;;
> + arm64) UNAME_PROCESSOR=aarch64 ;;
> esac
> if command -v xcode-select > /dev/null 2> /dev/null && \
> ! xcode-select --print-path > /dev/null 2> /dev/null ; then
What's the value of UNAME_MACHINE where this change is needed?
--
ldv