提交 fededcd2 编写于 作者: A akpm@osdl.org 提交者: Sam Ravnborg

kbuild: fix modpost compile with older gcc

The kernel now requires that CC be 3.1.0 or higher.  But we shouldn't place
that requirement upon HOSTCC unless we really need to.  Fixes my ia64 problem.
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
上级 0f558c33
...@@ -590,14 +590,14 @@ static void check_sec_ref(struct module *mod, const char *modname, ...@@ -590,14 +590,14 @@ static void check_sec_ref(struct module *mod, const char *modname,
/* Walk through all sections */ /* Walk through all sections */
for (i = 0; i < hdr->e_shnum; i++) { for (i = 0; i < hdr->e_shnum; i++) {
Elf_Rela *rela;
Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
const char *name = secstrings + sechdrs[i].sh_name + const char *name = secstrings + sechdrs[i].sh_name +
strlen(".rela"); strlen(".rela");
/* We want to process only relocation sections and not .init */ /* We want to process only relocation sections and not .init */
if (section_ref_ok(name) || (sechdrs[i].sh_type != SHT_RELA)) if (section_ref_ok(name) || (sechdrs[i].sh_type != SHT_RELA))
continue; continue;
Elf_Rela *rela;
Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
for (rela = start; rela < stop; rela++) { for (rela = start; rela < stop; rela++) {
Elf_Rela r; Elf_Rela r;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册