diff options
author | Roy Li <rongqing.li@windriver.com> | 2015-07-13 09:52:36 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-31 10:32:44 +0100 |
commit | 8f270dc404268da33e714bf6ca344c8f3941fe44 (patch) | |
tree | 2f7af2273cdd5c3d83d5872fd8ea6e874a18b2fc /meta | |
parent | 133ad639878154f7cfb80bf163bbb5682c3594e9 (diff) | |
download | poky-8f270dc404268da33e714bf6ca344c8f3941fe44.tar.gz |
elfutils: fix stack usage warning
(From OE-Core rev: 80d6a1c249ae8cd7b0bdc011a2d680221799cc83)
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/elfutils/elfutils-0.163/0001-fix-a-stack-usage-warning.patch | 28 | ||||
-rw-r--r-- | meta/recipes-devtools/elfutils/elfutils_0.163.bb | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/elfutils/elfutils-0.163/0001-fix-a-stack-usage-warning.patch b/meta/recipes-devtools/elfutils/elfutils-0.163/0001-fix-a-stack-usage-warning.patch new file mode 100644 index 0000000000..6923bf7053 --- /dev/null +++ b/meta/recipes-devtools/elfutils/elfutils-0.163/0001-fix-a-stack-usage-warning.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | [PATCH] fix a stack-usage warning | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | not use a variable to as a array size, otherwise the warning to error that | ||
6 | stack usage might be unbounded [-Werror=stack-usage=] will happen | ||
7 | |||
8 | Signed-off-by: Roy Li <rongqing.li@windriver.com> | ||
9 | --- | ||
10 | backends/ppc_initreg.c | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/backends/ppc_initreg.c b/backends/ppc_initreg.c | ||
14 | index 64f5379..52dde3e 100644 | ||
15 | --- a/backends/ppc_initreg.c | ||
16 | +++ b/backends/ppc_initreg.c | ||
17 | @@ -93,7 +93,7 @@ ppc_set_initial_registers_tid (pid_t tid __attribute__ ((unused)), | ||
18 | return false; | ||
19 | } | ||
20 | const size_t gprs = sizeof (user_regs.r.gpr) / sizeof (*user_regs.r.gpr); | ||
21 | - Dwarf_Word dwarf_regs[gprs]; | ||
22 | + Dwarf_Word dwarf_regs[sizeof (user_regs.r.gpr) / sizeof (*user_regs.r.gpr)]; | ||
23 | for (unsigned gpr = 0; gpr < gprs; gpr++) | ||
24 | dwarf_regs[gpr] = user_regs.r.gpr[gpr]; | ||
25 | if (! setfunc (0, gprs, dwarf_regs, arg)) | ||
26 | -- | ||
27 | 1.9.1 | ||
28 | |||
diff --git a/meta/recipes-devtools/elfutils/elfutils_0.163.bb b/meta/recipes-devtools/elfutils/elfutils_0.163.bb index c4fdabdb31..e391813639 100644 --- a/meta/recipes-devtools/elfutils/elfutils_0.163.bb +++ b/meta/recipes-devtools/elfutils/elfutils_0.163.bb | |||
@@ -17,6 +17,7 @@ SRC_URI += "\ | |||
17 | file://fixheadercheck.patch \ | 17 | file://fixheadercheck.patch \ |
18 | file://0001-elf_getarsym-Silence-Werror-maybe-uninitialized-fals.patch \ | 18 | file://0001-elf_getarsym-Silence-Werror-maybe-uninitialized-fals.patch \ |
19 | file://0001-remove-the-unneed-checking.patch \ | 19 | file://0001-remove-the-unneed-checking.patch \ |
20 | file://0001-fix-a-stack-usage-warning.patch \ | ||
20 | " | 21 | " |
21 | 22 | ||
22 | # pick the patch from debian | 23 | # pick the patch from debian |