patches/gcc/4.2.3/280-eabi_fixes.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 533 81a582c81c13
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 -durN gcc-4.2.3.orig/gcc/config/arm/linux-eabi.h gcc-4.2.3/gcc/config/arm/linux-eabi.h
     2 --- gcc-4.2.3.orig/gcc/config/arm/linux-eabi.h	2007-09-01 17:28:30.000000000 +0200
     3 +++ gcc-4.2.3/gcc/config/arm/linux-eabi.h	2008-05-25 23:47:36.000000000 +0200
     4 @@ -47,7 +47,8 @@
     5  #define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm10tdmi
     6  
     7  #undef SUBTARGET_EXTRA_LINK_SPEC
     8 -#define SUBTARGET_EXTRA_LINK_SPEC " -m armelf_linux_eabi"
     9 +#define SUBTARGET_EXTRA_LINK_SPEC	\
    10 +	" %{mlittle-endian:-m armelf_linux_eabi} %{mbig-endian:-m armelfb_linux_eabi}"
    11  
    12  /* Use ld-linux.so.3 so that it will be possible to run "classic"
    13     GNU/Linux binaries on an EABI system.  */