config/libc/newlib.in
author Jim F <jimfriel@gmail.com>
Mon Aug 24 19:20:57 2009 +0200 (2009-08-24)
changeset 1486 7155f2a00364
parent 1373 1f3e9f7ada71
child 1535 073d351bdcd3
permissions -rw-r--r--
glibc: fix build error caused by incorrect variable assignment

During the conversion to using bash arrays, the glibc build script
was improperly converted, and contains an incorrect variable
assignment to the config_options array.
mgl@1371
     1
# newlib options
mgl@1371
     2
# depends on EXPERIMENTAL
mgl@1371
     3
mgl@1371
     4
config LIBC_newlib
mgl@1371
     5
    help
mgl@1371
     6
    Newlib is a C library intended for use on embedded systems. It is a 
mgl@1371
     7
    conglomeration of several library parts, all under free software 
mgl@1371
     8
    licenses that make them easily usable on embedded products. Newlib 
mgl@1371
     9
    is only available in source form. It can be compiled for a wide 
mgl@1371
    10
    array of processors, and will usually work on any architecture with
mgl@1371
    11
    the addition of a few low-level routines. 
mgl@1371
    12
mgl@1371
    13
choice
mgl@1371
    14
    bool
mgl@1371
    15
    prompt "newlib version"
mgl@1371
    16
mgl@1371
    17
config NEWLIB_V_1_17_0
mgl@1371
    18
    bool
mgl@1371
    19
    prompt "1.17.0"
mgl@1371
    20
mgl@1371
    21
# CT_INSERT_VERSION_ABOVE
mgl@1371
    22
# Don't remove above line!
mgl@1371
    23
mgl@1371
    24
endchoice
mgl@1371
    25
mgl@1371
    26
config LIBC_VERSION
mgl@1371
    27
    string
mgl@1371
    28
    default "1.17.0" if NEWLIB_V_1_17_0
mgl@1371
    29
mgl@1371
    30
# CT_INSERT_VERSION_STRING_ABOVE
mgl@1371
    31
# Don't remove above line!
mgl@1373
    32
mgl@1373
    33
config ATMEL_AVR32_HEADERS
mgl@1373
    34
    bool
mgl@1373
    35
    prompt "Install Atmel AVR32 headers"
mgl@1373
    36
    default y
mgl@1373
    37
    help
mgl@1373
    38
      Install Atmel AVR32 headers for native AVR32 development. Most
mgl@1373
    39
      AVR32 MCU devices are supported.
mgl@1373
    40
      
mgl@1373
    41
      If you do native AVR32 development you want to say 'Y' here.
mgl@1373
    42