Comments
Patch
new file mode 100644
@@ -0,0 +1,23 @@
+Fix as and ld checking steps to allow system to correctly check 2.1x versions.
+
+Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
+--- libc.orig/configure 2013-01-16 12:07:18.146902148 +0100
++++ libc/configure 2013-01-16 12:08:10.598911559 +0100
+@@ -4757,7 +4757,7 @@ $as_echo_n "checking version of $AS... "
+ ac_prog_version=`$AS --version 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
+ case $ac_prog_version in
+ '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
+- 2.1[0-9][0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*)
++ 2.1[0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*)
+ ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
+ *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
+
+@@ -4820,7 +4820,7 @@ $as_echo_n "checking version of $LD... "
+ ac_prog_version=`$LD --version 2>&1 | sed -n 's/^.*GNU ld.* \([0-9][0-9]*\.[0-9.]*\).*$/\1/p'`
+ case $ac_prog_version in
+ '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
+- 2.1[0-9][0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*)
++ 2.1[0-9]*|2.[2-9][0-9]*|[3-9].*|[1-9][0-9]*)
+ ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
+ *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
+
@@ -33,6 +33,7 @@ SRC_URI = "http://downloads.yoctoproject.org/releases/eglibc/eglibc-${PV}-svnr21
file://tzselect-sh.patch \
file://tzselect-awk.patch \
file://0001-eglibc-run-libm-err-tab.pl-with-specific-dirs-in-S.patch \
+ file://eglibc-2.16_fix_as_ld_ver_check.patch \
"
SRC_URI[tarball.md5sum] = "88894fa6e10e58e85fbd8134b8e486a8"
Fix routine to check as and ld version check in the configure, to allow system to correctly check for version 2.1x. Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com> --- .../eglibc-2.16_fix_as_ld_ver_check.patch | 23 ++++++++++++++++++++ meta/recipes-core/eglibc/eglibc_2.16.bb | 1 + 2 files changed, 24 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-core/eglibc/eglibc-2.16/eglibc-2.16_fix_as_ld_ver_check.patch