mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
nss: Fix build error for aarch64be.
(From OE-Core rev: 2d9a8a5539342faa1827f4902b1095a9f3448c66) Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
8ea511ec30
commit
caed345be3
@@ -89,6 +89,8 @@ do_compile() {
|
||||
OS_TEST=ppc64
|
||||
elif [ "${TARGET_ARCH}" = "mips" -o "${TARGET_ARCH}" = "mipsel" -o "${TARGET_ARCH}" = "mips64" -o "${TARGET_ARCH}" = "mips64el" ]; then
|
||||
OS_TEST=mips
|
||||
elif [ "${TARGET_ARCH}" = "aarch64_be" ]; then
|
||||
OS_TEST="aarch64"
|
||||
else
|
||||
OS_TEST="${TARGET_ARCH}"
|
||||
fi
|
||||
@@ -144,6 +146,9 @@ do_install() {
|
||||
OS_TEST=ppc64
|
||||
elif [ "${TARGET_ARCH}" = "mips" -o "${TARGET_ARCH}" = "mipsel" -o "${TARGET_ARCH}" = "mips64" -o "${TARGET_ARCH}" = "mips64el" ]; then
|
||||
OS_TEST=mips
|
||||
elif [ "${TARGET_ARCH}" = "aarch64_be" ]; then
|
||||
CPU_ARCH=aarch64
|
||||
OS_TEST="aarch64"
|
||||
else
|
||||
OS_TEST="${TARGET_ARCH}"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user