-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hostArch/ARCH is ambiguous #69
Comments
This is a regression introduced by c8bcf0b. The problem is that |
yea, but for windows, that is what we want, isn't it? so we get |
On MSYS the Autoconf triple is kind of arbitrary. Does it really need to be |
no no, that was not, what I tried to say. for windows that is okay for me! the problem is just the arm/aarch strings. |
But where do we use the |
Ping. Changing the $ARCH value is certainly not the right approach. The correct value for "ARCH" when building for AArch64 is "arm64". |
i am not sure, if this was mis-usage. currently i am at this one: #78 |
basement/plugins/multiarch.py
Lines 16 to 17 in 0d6bb3e
e.g. if we build on an aarch64 host system, we get the error, that there is no
arm64-linux-gnu-toolchain
. for building openssl or linux-libc-headers we need the ARCH string "arm64".I guess we should set
hostArch
toaarch64
(for usage inAUTOCONF_*
and because it is the result ofuname -a
) and map in recipes the value toarm64
if necessary.The text was updated successfully, but these errors were encountered: