patches/binutils/2.17a/160-mips-ELF_MAXPAGESIZE-4K.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 747 d3e603e7c17c
permissions -rw-r--r--
all: fix wildcard to work with make-4.x

In make-3.8x, the $(wildacrd) function would sort the entries,
while in make-4.x, it would just return the entries in any
unpredictable order [*]

Use the $(sort) function to get reproducible behaviour.

[*] Well, most probably the roder the entries appear when read
from readdir()

Reported-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
     1 diff -dur binutils-2.17.old/bfd/elf32-mips.c binutils-2.17/bfd/elf32-mips.c
     2 --- binutils-2.17.old/bfd/elf32-mips.c	2006-03-22 10:28:13.000000000 +0100
     3 +++ binutils-2.17/bfd/elf32-mips.c	2007-05-01 18:26:15.000000000 +0200
     4 @@ -1617,7 +1617,9 @@
     5  
     6  /* The SVR4 MIPS ABI says that this should be 0x10000, and Linux uses
     7     page sizes of up to that limit, so we need to respect it.  */
     8 -#define ELF_MAXPAGESIZE			0x10000
     9 +/*#define ELF_MAXPAGESIZE			0x10000*/
    10 +/* Use 4K to shrink the elf header.  NOT for general use! */
    11 +#define ELF_MAXPAGESIZE			0x1000
    12  #define elf32_bed			elf32_tradbed
    13  
    14  /* Include the target file again for this target.  */
    15 diff -dur binutils-2.17.old/bfd/elfn32-mips.c binutils-2.17/bfd/elfn32-mips.c
    16 --- binutils-2.17.old/bfd/elfn32-mips.c	2005-11-23 15:04:17.000000000 +0100
    17 +++ binutils-2.17/bfd/elfn32-mips.c	2007-05-01 18:26:15.000000000 +0200
    18 @@ -2402,7 +2402,9 @@
    19  
    20  /* The SVR4 MIPS ABI says that this should be 0x10000, and Linux uses
    21     page sizes of up to that limit, so we need to respect it.  */
    22 -#define ELF_MAXPAGESIZE			0x10000
    23 +/*#define ELF_MAXPAGESIZE			0x10000*/
    24 +/* Use 4K to shrink the elf header.  NOT for general use! */
    25 +#define ELF_MAXPAGESIZE			0x1000
    26  #define elf32_bed			elf32_tradbed
    27  
    28  /* Include the target file again for this target.  */