diff options
| -rw-r--r-- | meta/recipes-devtools/elfutils/elfutils/fix-build-gcc-4.8.patch | 44 | ||||
| -rw-r--r-- | meta/recipes-devtools/elfutils/elfutils_0.155.bb | 3 |
2 files changed, 45 insertions, 2 deletions
diff --git a/meta/recipes-devtools/elfutils/elfutils/fix-build-gcc-4.8.patch b/meta/recipes-devtools/elfutils/elfutils/fix-build-gcc-4.8.patch new file mode 100644 index 0000000000..a7c351941f --- /dev/null +++ b/meta/recipes-devtools/elfutils/elfutils/fix-build-gcc-4.8.patch | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | This patch fixes a warning seen with gcc 4.8 (especially on ubuntu 13.10) | ||
| 2 | |||
| 3 | | addr2line.c: In function 'handle_address': | ||
| 4 | | addr2line.c:450:7: error: format '%a' expects argument of type 'float *', but argument 3 has type 'char **' [-Werror=format=] | ||
| 5 | | if (sscanf (string, "(%a[^)])%" PRIiMAX "%n", &name, &addr, &i) == 2 | ||
| 6 | | ^ | ||
| 7 | | addr2line.c:453:7: error: format '%a' expects argument of type 'float *', but argument 3 has type 'char **' [-Werror=format=] | ||
| 8 | | switch (sscanf (string, "%a[^-+]%n%" PRIiMAX "%n", &name, &i, &addr, &j)) | ||
| 9 | | ^ | ||
| 10 | | cc1: all warnings being treated as errors | ||
| 11 | |||
| 12 | |||
| 13 | %a is old GNU style and should be abandoned in favor of %m | ||
| 14 | |||
| 15 | Also see | ||
| 16 | |||
| 17 | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54361 | ||
| 18 | |||
| 19 | to support this assertion | ||
| 20 | |||
| 21 | This patch is added via redhat-compatibility patch so lets revert this part | ||
| 22 | here. | ||
| 23 | |||
| 24 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 25 | |||
| 26 | Upstream-Status: Inappropriate [Caused by an earlier patch] | ||
| 27 | |||
| 28 | Index: elfutils-0.155/src/addr2line.c | ||
| 29 | =================================================================== | ||
| 30 | --- elfutils-0.155.orig/src/addr2line.c | ||
| 31 | +++ elfutils-0.155/src/addr2line.c | ||
| 32 | @@ -447,10 +447,10 @@ handle_address (const char *string, Dwfl | ||
| 33 | bool parsed = false; | ||
| 34 | int i, j; | ||
| 35 | char *name = NULL; | ||
| 36 | - if (sscanf (string, "(%a[^)])%" PRIiMAX "%n", &name, &addr, &i) == 2 | ||
| 37 | + if (sscanf (string, "(%m[^)])%" PRIiMAX "%n", &name, &addr, &i) == 2 | ||
| 38 | && string[i] == '\0') | ||
| 39 | parsed = adjust_to_section (name, &addr, dwfl); | ||
| 40 | - switch (sscanf (string, "%a[^-+]%n%" PRIiMAX "%n", &name, &i, &addr, &j)) | ||
| 41 | + switch (sscanf (string, "%m[^-+]%n%" PRIiMAX "%n", &name, &i, &addr, &j)) | ||
| 42 | { | ||
| 43 | default: | ||
| 44 | break; | ||
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.155.bb b/meta/recipes-devtools/elfutils/elfutils_0.155.bb index c5a2f0ebab..1a8c3c7e8c 100644 --- a/meta/recipes-devtools/elfutils/elfutils_0.155.bb +++ b/meta/recipes-devtools/elfutils/elfutils_0.155.bb | |||
| @@ -5,8 +5,6 @@ LICENSE = "(GPLv3 & Elfutils-Exception)" | |||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
| 6 | DEPENDS = "libtool bzip2 zlib virtual/libintl" | 6 | DEPENDS = "libtool bzip2 zlib virtual/libintl" |
| 7 | 7 | ||
| 8 | PR = "r0" | ||
| 9 | |||
| 10 | SRC_URI = "https://fedorahosted.org/releases/e/l/elfutils/${PV}/elfutils-${PV}.tar.bz2" | 8 | SRC_URI = "https://fedorahosted.org/releases/e/l/elfutils/${PV}/elfutils-${PV}.tar.bz2" |
| 11 | 9 | ||
| 12 | SRC_URI[md5sum] = "163a5712b86f6bdfebdf233cc6e2192d" | 10 | SRC_URI[md5sum] = "163a5712b86f6bdfebdf233cc6e2192d" |
| @@ -24,6 +22,7 @@ SRC_URI += "\ | |||
| 24 | file://dso-link-change.patch \ | 22 | file://dso-link-change.patch \ |
| 25 | file://nm-Fix-size-passed-to-snprintf-for-invalid-sh_name-case.patch \ | 23 | file://nm-Fix-size-passed-to-snprintf-for-invalid-sh_name-case.patch \ |
| 26 | file://elfutils-ar-c-fix-num-passed-to-memset.patch \ | 24 | file://elfutils-ar-c-fix-num-passed-to-memset.patch \ |
| 25 | file://fix-build-gcc-4.8.patch \ | ||
| 27 | " | 26 | " |
| 28 | # Only apply when building uclibc based target recipe | 27 | # Only apply when building uclibc based target recipe |
| 29 | SRC_URI_append_libc-uclibc = " file://uclibc-support.patch" | 28 | SRC_URI_append_libc-uclibc = " file://uclibc-support.patch" |
