|
elif m.startswith("aarch64"): |
|
return "arm64" |
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 to aarch64 (for usage in AUTOCONF_* and because it is the result of uname -a) and map in recipes the value to arm64 if necessary.
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
hostArchtoaarch64(for usage inAUTOCONF_*and because it is the result ofuname -a) and map in recipes the value toarm64if necessary.