From cc6a65dfd4b818ecd641410f76f054003767f8a1 Mon Sep 17 00:00:00 2001 From: Dennis Lan Date: Thu, 28 Jun 2012 14:36:50 -0700 Subject: 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 Signed-off-by: Richard Purdie --- meta/recipes-core/eglibc/eglibc_2.15.bb | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/recipes-core/eglibc') diff --git a/meta/recipes-core/eglibc/eglibc_2.15.bb b/meta/recipes-core/eglibc/eglibc_2.15.bb index adf1048209..7dd9810f35 100644 --- a/meta/recipes-core/eglibc/eglibc_2.15.bb +++ b/meta/recipes-core/eglibc/eglibc_2.15.bb @@ -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 -- cgit v1.2.3-54-g00ecf