This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author keith
Recipients christian.heimes, keith, ned.deily
Date 2021-04-19.20:51:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1618865500.29.0.819108569858.issue43878@roundup.psfhosted.org>
In-reply-to
Content
Thanks for checking, I was able to debug further and it turns out the actual issue is if you use `uname` from `coreutils`, you get different results:

```
% /opt/homebrew/opt/coreutils/libexec/gnubin/uname -p
arm64
% /usr/bin/uname -p
arm
```

I have this in my $PATH (not specifically for uname but for other coreutils binaries) which is what lead to this. This update fixes this because the newer config.sub version contains a case for `arm64` that didn't exist before https://github.com/python/cpython/pull/25450/files#diff-9c966208fd0a0c8e24a1526da6904887c378283b9b645b9740c19339884174d9R1107

So this isn't as big of an issue as I thought, but I still think it makes sense to update these files.
History
Date User Action Args
2021-04-19 20:51:40keithsetrecipients: + keith, christian.heimes, ned.deily
2021-04-19 20:51:40keithsetmessageid: <1618865500.29.0.819108569858.issue43878@roundup.psfhosted.org>
2021-04-19 20:51:40keithlinkissue43878 messages
2021-04-19 20:51:40keithcreate