scripts/build/arch/mips.sh
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Mon May 26 23:25:17 2014 +0200 (2014-05-26)
changeset 3324 1eea25c0bfe7
parent 3169 9d0b37f08a10
permissions -rw-r--r--
complibs/cloog: remove old CLooG/PPL versions

Those versions are no longer available upstream. They have purely and
simply disapeared, without leaving any trace of their mere existences.

Just keep the latest cloog-ppl-0.15.11, which still exists on the gcc
infra mirror (but for how long?)

Reported-by: Guillaume FLORENCE-COURTAND <gflorenc@laposte.net>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # Compute MIPS-specific values
     2 
     3 CT_DoArchTupleValues() {
     4     # The architecture part of the tuple
     5     CT_TARGET_ARCH="${CT_ARCH}${target_bits_64}${CT_ARCH_SUFFIX:-${target_endian_el}}"
     6 
     7     # Override CFLAGS for endianness:
     8     case "${CT_ARCH_ENDIAN}" in
     9         big)    CT_ARCH_ENDIAN_CFLAG="-EB";;
    10         little) CT_ARCH_ENDIAN_CFLAG="-EL";;
    11     esac
    12 
    13     # Override ABI flags
    14     CT_ARCH_ABI_CFLAG="-mabi=${CT_ARCH_mips_ABI}"
    15     CT_ARCH_WITH_ABI="--with-abi=${CT_ARCH_mips_ABI}"
    16 }