mirror of
https://git.yoctoproject.org/poky
synced 2026-04-07 23:02:22 +02:00
eglibc: support mipsel little endian, filter out -march=mips32
Quote for eglibc source: for mips eglibc now builds syscall tables for all abi's so we make sure that we choose right march option which is compatible with o32,n32 and n64 abi's e.g. -march=mips32 is not compatible with n32 and n64 therefore we filter it out in such case -march=from-abi which will be mips1 when using o32 and mips3 when using n32/n64 (From OE-Core rev: 6a013236d362874c661aa5f15b948aac32177181) Signed-off-by: Dennis Lan <dennis.yxun@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a4d55aafa7
commit
cc6a65dfd4
@@ -101,6 +101,7 @@ do_patch_append() {
|
||||
# mips1 when using o32 and mips3 when using n32/n64
|
||||
|
||||
TUNE_CCARGS_mips := "${@oe_filter_out('-march=mips32', '${TUNE_CCARGS}', d)}"
|
||||
TUNE_CCARGS_mipsel := "${@oe_filter_out('-march=mips32', '${TUNE_CCARGS}', d)}"
|
||||
|
||||
# We need to ensure that all of the i386 and x86_64 headers are identical
|
||||
# to support the multilib case. We do this by copying headers from x86_64
|
||||
|
||||
Reference in New Issue
Block a user