scripts/build/arch/blackfin.sh
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 1910 207ad430c254
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>
thomas@1910
     1
# Compute Blackfin-specific values
thomas@1910
     2
thomas@1910
     3
CT_DoArchTupleValues() {
thomas@1910
     4
    # The architecture part of the tuple:
w@3169
     5
    CT_TARGET_ARCH="bfin${CT_ARCH_SUFFIX}"
thomas@1910
     6
thomas@1910
     7
    # gcc ./configure flags
thomas@1910
     8
    CT_ARCH_WITH_ARCH=
thomas@1910
     9
    CT_ARCH_WITH_ABI=
thomas@1910
    10
    CT_ARCH_WITH_CPU=
thomas@1910
    11
    CT_ARCH_WITH_TUNE=
thomas@1910
    12
    CT_ARCH_WITH_FPU=
thomas@1910
    13
    CT_ARCH_WITH_FLOAT=
thomas@1910
    14
}