patches/binutils/2.19.1a/190-mips64-defaultemul.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 1816 ab179fab1409
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 --- binutils-2.20/ld/configure.tgt.orig	2010-02-20 04:05:31.000000000 -0500
     2 +++ binutils-2.20/ld/configure.tgt	2010-02-20 04:08:11.000000000 -0500
     3 @@ -400,11 +400,11 @@
     4  mips*-*-vxworks*)	targ_emul=elf32ebmipvxworks
     5  		        targ_extra_emuls="elf32elmipvxworks" ;;
     6  mips*-*-windiss)	targ_emul=elf32mipswindiss ;;
     7 -mips64*el-*-linux-*)	targ_emul=elf32ltsmipn32
     8 -			targ_extra_emuls="elf32btsmipn32 elf32ltsmip elf32btsmip elf64ltsmip elf64btsmip"
     9 +mips64*el-*-linux-*)	targ_emul=elf64ltsmip
    10 +			targ_extra_emuls="elf32ltsmipn32 elf32btsmipn32 elf32ltsmip elf32btsmip elf64btsmip"
    11  			targ_extra_libpath=$targ_extra_emuls ;;
    12 -mips64*-*-linux-*)	targ_emul=elf32btsmipn32
    13 -			targ_extra_emuls="elf32ltsmipn32 elf32btsmip elf32ltsmip elf64btsmip elf64ltsmip"
    14 +mips64*-*-linux-*)	targ_emul=elf64btsmip
    15 +			targ_extra_emuls="elf32btsmipn32 elf32ltsmipn32 elf32btsmip elf32ltsmip elf64ltsmip"
    16  			targ_extra_libpath=$targ_extra_emuls ;;
    17  mips*el-*-linux-*)	targ_emul=elf32ltsmip
    18  			targ_extra_emuls="elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip"