config/libc/newlib.in.2
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Aug 02 18:28:10 2011 +0200 (2011-08-02)
changeset 2590 b64cfb67944e
parent 2167 9cd8ee461fd0
child 2647 cb0f31fe2535
permissions -rw-r--r--
scripts/functions: svn retrieval first tries the mirror for tarballs

The svn download helper looks for the local tarballs dir to see if it
can find a pre-downloaded tarball, and if it does not find it, does
the actual fetch to upstream via svn.

In the process, it does not even try to get a tarball from the local
mirror, which can be useful if the mirror has been pre-populated
manually (or with a previously downloaded tree).

Fake a tarball get with the standard tarball-download helper, but
without specifying any upstream URL, which makes the helper directly
try the LAN mirror.

Of course, if no mirror is specified, no URL wil be available, and
the standard svn retrieval will kick in.

Reported-by: ANDY KENNEDY <ANDY.KENNEDY@adtran.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@2165
     1
# newlib second-part options
yann@2165
     2
yann@2167
     3
config LIBC_NEWLIB_IO_C99FMT
yann@2167
     4
    bool
yann@2167
     5
    prompt "Enable IOs on C99 formats"
yann@2167
     6
    help
yann@2167
     7
      Enable support for IOs on C99 formats.
yann@2167
     8
yann@2166
     9
config LIBC_NEWLIB_IO_LL
yann@2166
    10
    bool
yann@2166
    11
    prompt "Enable IOs on long long"
yann@2166
    12
    help
yann@2166
    13
      Enable support for IOs on long long integers.
yann@2166
    14
yann@2165
    15
config LIBC_NEWLIB_IO_FLOAT
yann@2165
    16
    bool
yann@2165
    17
    prompt "Enable IOs on floats and doubles"
yann@2165
    18
    help
yann@2165
    19
      Enable support for IOs on floating point
yann@2165
    20
      values (float and double).
yann@2165
    21
yann@2165
    22
config LIBC_NEWLIB_IO_LDBL
yann@2165
    23
    bool
yann@2165
    24
    prompt "Enable IOs on long doubles"
yann@2165
    25
    depends on LIBC_NEWLIB_IO_FLOAT
yann@2165
    26
    help
yann@2165
    27
      Enable support for IOs on long doubles.