From 5445e12e5a32cc5c51ce8a29f2800692ed831115 Mon Sep 17 00:00:00 2001 From: Zhenhua Luo Date: Wed, 13 Mar 2013 15:43:04 +0800 Subject: binutils: fix ineffectual zero of cache and array bounds issue binutils build fails on Fedora18+: 1. binutils-2.23.1/bfd/elf32-xtensa.c:6078:36: error: argument to 'sizeof' in 'memset' call is the same expression as the destination; did you mean to dereference it? [-Werror=sizeof-pointer-memaccess] memset (sec_cache, 0, sizeof (sec_cache)); ^ 2. binutils-2.23.1/bfd/elf32-xtensa.c:6120:32: error: argument to 'sizeof' in 'memset' call is the same expression as the destination; did you mean to dereference it? [-Werror=sizeof-pointer-memaccess] memset (sec_cache, 0, sizeof (sec_cache)); ^ 3. binutils-2.23.1/opcodes/arc-dis.c:430:13: error: argument to 'sizeof' in '__builtin_strncat' call is the same expression as the destination; did you mean to provide an explicit length? [-Werror=sizeof-pointer-memaccess] sizeof (state->commentBuffer)); ^ 4. binutils-2.23.1/opcodes/rl78-dis.c:230:13: error: array subscript is above array bounds [-Werror=array-bounds] if (oper->use_es && indirect_type (oper->type)) ^ Signed-off-by: Zhenhua Luo Signed-off-by: Saul Wold --- meta/recipes-devtools/binutils/binutils-2.23.1.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'meta/recipes-devtools/binutils/binutils-2.23.1.inc') diff --git a/meta/recipes-devtools/binutils/binutils-2.23.1.inc b/meta/recipes-devtools/binutils/binutils-2.23.1.inc index 15811d7830..4523407660 100644 --- a/meta/recipes-devtools/binutils/binutils-2.23.1.inc +++ b/meta/recipes-devtools/binutils/binutils-2.23.1.inc @@ -1,4 +1,4 @@ -PR = "r2" +PR = "r3" LIC_FILES_CHKSUM="\ file://src-release;endline=17;md5=4830a9ef968f3b18dd5e9f2c00db2d35\ @@ -28,6 +28,7 @@ SRC_URI = "\ file://binutils-armv5e.patch \ file://mips64-default-ld-emulation.patch \ ${BACKPORT} \ + file://binutils-fix-over-array-bounds-issue.patch \ " BACKPORT = "\ @@ -44,6 +45,8 @@ BACKPORT = "\ file://backport/0026-ld-testsuite.patch \ file://backport/0001-doc-binutils.texi-elfedit-Fix-use-of-itemx-in-table.patch \ file://backport/0001-ld.texinfo-Replace-with-when-it-is-part-of-the-text.patch \ + file://backport/binutils-fix-ineffectual-zero-of-cache.patch \ + file://backport/binutils-replace-strncat-with-strcat.patch \ " SRC_URI[md5sum] = "33adb18c3048d057ac58d07a3f1adb38" SRC_URI[sha256sum] = "2ab2e5b03e086d12c6295f831adad46b3e1410a3a234933a2e8fac66cb2e7a19" -- cgit 1.2.3-korg