diff options
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/oprofile/oprofile.inc | 4 | ||||
-rw-r--r-- | meta/recipes-kernel/oprofile/oprofile/0001-Fix-FTBFS-problem-with-GCC-6.patch | 51 |
2 files changed, 54 insertions, 1 deletions
diff --git a/meta/recipes-kernel/oprofile/oprofile.inc b/meta/recipes-kernel/oprofile/oprofile.inc index cf3ad435cf..96ef43dc30 100644 --- a/meta/recipes-kernel/oprofile/oprofile.inc +++ b/meta/recipes-kernel/oprofile/oprofile.inc | |||
@@ -24,7 +24,9 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \ | |||
24 | file://oprofile-cross-compile-tests.patch \ | 24 | file://oprofile-cross-compile-tests.patch \ |
25 | file://run-ptest \ | 25 | file://run-ptest \ |
26 | file://root-home-dir.patch \ | 26 | file://root-home-dir.patch \ |
27 | file://0001-Add-rmb-definition-for-NIOS2-architecture.patch" | 27 | file://0001-Add-rmb-definition-for-NIOS2-architecture.patch \ |
28 | file://0001-Fix-FTBFS-problem-with-GCC-6.patch \ | ||
29 | " | ||
28 | 30 | ||
29 | SRC_URI_append_libc-musl = " file://musl.patch" | 31 | SRC_URI_append_libc-musl = " file://musl.patch" |
30 | 32 | ||
diff --git a/meta/recipes-kernel/oprofile/oprofile/0001-Fix-FTBFS-problem-with-GCC-6.patch b/meta/recipes-kernel/oprofile/oprofile/0001-Fix-FTBFS-problem-with-GCC-6.patch new file mode 100644 index 0000000000..d372fd527b --- /dev/null +++ b/meta/recipes-kernel/oprofile/oprofile/0001-Fix-FTBFS-problem-with-GCC-6.patch | |||
@@ -0,0 +1,51 @@ | |||
1 | From 39d4d46a0bd504ac708ffe72df87bf74cd12ad30 Mon Sep 17 00:00:00 2001 | ||
2 | From: William Cohen <wcohen@redhat.com> | ||
3 | Date: Fri, 5 Feb 2016 17:30:19 -0500 | ||
4 | Subject: [PATCH] Fix FTBFS problem with GCC-6 | ||
5 | |||
6 | GCC-6 is pickier about some of the type conversions causing the Fedora | ||
7 | 24 mass rebuild the build of oprofile failed with: | ||
8 | |||
9 | make[3]: Entering directory '/builddir/build/BUILD/oprofile-1.1.0/libutil++' | ||
10 | g++ -DHAVE_CONFIG_H -I. -I.. -I ../libutil -I ../libop -I ../libpp -W -Wall -fno-common -ftemplate-depth-50 -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -c -o op_bfd.o op_bfd.cpp | ||
11 | op_bfd.cpp: In member function 'void op_bfd::get_symbol_range(symbol_index_t, long long unsigned int&, long long unsigned int&) const': | ||
12 | op_bfd.cpp:538:47: error: cannot convert 'std::ostream {aka std::basic_ostream<char>}' to 'const bool' in initialization | ||
13 | bool const verbose = cverb << (vbfd & vlevel1); | ||
14 | ^ | ||
15 | op_bfd.cpp:546:7: error: in argument to unary ! | ||
16 | if (!verbose) | ||
17 | ^~~~~~~ | ||
18 | |||
19 | Avoid the intermediate bool type to make GCC-6 happy. | ||
20 | |||
21 | Signed-off-by: William Cohen <wcohen@redhat.com> | ||
22 | --- | ||
23 | Upstream-Status: Backport | ||
24 | |||
25 | libutil++/op_bfd.cpp | 4 +--- | ||
26 | 1 file changed, 1 insertion(+), 3 deletions(-) | ||
27 | |||
28 | diff --git a/libutil++/op_bfd.cpp b/libutil++/op_bfd.cpp | ||
29 | index 389c920..f2eb42b 100644 | ||
30 | --- a/libutil++/op_bfd.cpp | ||
31 | +++ b/libutil++/op_bfd.cpp | ||
32 | @@ -535,15 +535,13 @@ void op_bfd::get_symbol_range(symbol_index_t sym_idx, | ||
33 | { | ||
34 | op_bfd_symbol const & sym = syms[sym_idx]; | ||
35 | |||
36 | - bool const verbose = cverb << (vbfd & vlevel1); | ||
37 | - | ||
38 | if (anon_obj) | ||
39 | start = sym.vma(); | ||
40 | else | ||
41 | start = sym.filepos(); | ||
42 | end = start + sym.size(); | ||
43 | |||
44 | - if (!verbose) | ||
45 | + if (!(cverb << (vbfd & vlevel1))) | ||
46 | return; | ||
47 | |||
48 | io_state state(cverb << (vbfd & vlevel1)); | ||
49 | -- | ||
50 | 1.9.1 | ||
51 | |||