scripts/build/arch/avr32.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jan 12 19:24:03 2010 +0100 (2010-01-12)
changeset 1761 88020b2c3246
child 3169 9d0b37f08a10
permissions -rw-r--r--
scripts/functions: change handling of nochdir

- 'nochdir' must be the first option
- have systematic pushd/popd, even if nochdir
mgl@1371
     1
# Compute AVR32-specific values
mgl@1371
     2
mgl@1371
     3
CT_DoArchTupleValues() {
mgl@1371
     4
    # The architecture part of the tuple:
mgl@1371
     5
    CT_TARGET_ARCH="${CT_ARCH}"
mgl@1371
     6
mgl@1371
     7
    # gcc ./configure flags
mgl@1371
     8
    CT_ARCH_WITH_ARCH=
mgl@1371
     9
    CT_ARCH_WITH_ABI=
mgl@1371
    10
    CT_ARCH_WITH_CPU=
mgl@1371
    11
    CT_ARCH_WITH_TUNE=
mgl@1371
    12
    CT_ARCH_WITH_FPU=
mgl@1371
    13
    CT_ARCH_WITH_FLOAT=
mgl@1371
    14
    CT_TARGET_SYS=none
mgl@1371
    15
mgl@1371
    16
}