mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-22 06:07:49 +00:00
dc00d94ba3
Recently, all binutils versions have been renamed after a GPL compliance issue was found and fixed in binutils; http://sourceware.org/ml/binutils/2011-08/msg00198.html Although legacy symlinks have been put in place, we should now use the new, real version strings. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
29 lines
1.3 KiB
Diff
29 lines
1.3 KiB
Diff
diff -dur binutils-2.17.old/bfd/elf32-mips.c binutils-2.17/bfd/elf32-mips.c
|
|
--- binutils-2.17.old/bfd/elf32-mips.c 2006-03-22 10:28:13.000000000 +0100
|
|
+++ binutils-2.17/bfd/elf32-mips.c 2007-05-01 18:26:15.000000000 +0200
|
|
@@ -1617,7 +1617,9 @@
|
|
|
|
/* The SVR4 MIPS ABI says that this should be 0x10000, and Linux uses
|
|
page sizes of up to that limit, so we need to respect it. */
|
|
-#define ELF_MAXPAGESIZE 0x10000
|
|
+/*#define ELF_MAXPAGESIZE 0x10000*/
|
|
+/* Use 4K to shrink the elf header. NOT for general use! */
|
|
+#define ELF_MAXPAGESIZE 0x1000
|
|
#define elf32_bed elf32_tradbed
|
|
|
|
/* Include the target file again for this target. */
|
|
diff -dur binutils-2.17.old/bfd/elfn32-mips.c binutils-2.17/bfd/elfn32-mips.c
|
|
--- binutils-2.17.old/bfd/elfn32-mips.c 2005-11-23 15:04:17.000000000 +0100
|
|
+++ binutils-2.17/bfd/elfn32-mips.c 2007-05-01 18:26:15.000000000 +0200
|
|
@@ -2402,7 +2402,9 @@
|
|
|
|
/* The SVR4 MIPS ABI says that this should be 0x10000, and Linux uses
|
|
page sizes of up to that limit, so we need to respect it. */
|
|
-#define ELF_MAXPAGESIZE 0x10000
|
|
+/*#define ELF_MAXPAGESIZE 0x10000*/
|
|
+/* Use 4K to shrink the elf header. NOT for general use! */
|
|
+#define ELF_MAXPAGESIZE 0x1000
|
|
#define elf32_bed elf32_tradbed
|
|
|
|
/* Include the target file again for this target. */
|