SOURCES: elfutils-sparc.patch (NEW) - pass elflink test on sparc
qboosh
qboosh at pld-linux.org
Fri Aug 25 21:46:36 CEST 2006
Author: qboosh Date: Fri Aug 25 19:46:36 2006 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- pass elflink test on sparc
---- Files affected:
SOURCES:
elfutils-sparc.patch (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SOURCES/elfutils-sparc.patch
diff -u /dev/null SOURCES/elfutils-sparc.patch:1.1
--- /dev/null Fri Aug 25 21:46:36 2006
+++ SOURCES/elfutils-sparc.patch Fri Aug 25 21:46:31 2006
@@ -0,0 +1,20 @@
+2006-08-25 Jakub Bogusz <qboosh at pld-linux dot org>
+
+ * elflint.c (check_sections): support special case of SPARC ELF32 PLT
+ entries
+
+--- elfutils-0.123/src/elflint.c.orig 2006-08-25 16:20:46.000000000 +0000
++++ elfutils-0.123/src/elflint.c 2006-08-25 18:57:09.000000000 +0000
+@@ -3214,7 +3214,11 @@
+ }
+ }
+
+- if (shdr->sh_entsize != 0 && shdr->sh_size % shdr->sh_entsize)
++ size_t scnsize = shdr->sh_size;
++ /* special case of SPARC ELF32 .plt: final single NOP after the last PLT entry */
++ if (!strcmp (scnname, ".plt") && (ehdr->e_machine == EM_SPARC))
++ scnsize -= 4;
++ if (shdr->sh_entsize != 0 && scnsize % shdr->sh_entsize)
+ ERROR (gettext ("\
+ section [%2zu] '%s': size not multiple of entry size\n"),
+ cnt, section_name (ebl, cnt));
================================================================
More information about the pld-cvs-commit
mailing list