This affects crossenv as it relies on HOST_GNU_TYPE to determine the output for os.uname().machine and platform.uname().machine
At the moment, cross builds print the following warning:
WARNING: The cross-compiler ('arm64-apple-darwin20.0.0-clang') does not appear to be for the correct architecture (got arm64-apple-darwin20.0.0, expected aarch64-apple-darwin20.0.0). Use --cc to correct, if necessary.
And $PYTHON -c 'import os; print(os.uname().machine)' outputs:
There is a subtle difference in the recent builds of python:
This affects crossenv as it relies on
HOST_GNU_TYPE
to determine the output foros.uname().machine
andplatform.uname().machine
At the moment, cross builds print the following warning:
And
$PYTHON -c 'import os; print(os.uname().machine)'
outputs:Instead of:
This is causing issues with
pip install /path/to/generated/wheel
erroring out with: