config/libc/newlib.in
author "Martin Lund" <mgl@doredevelopment.dk>
Fri May 22 14:46:18 2009 +0000 (2009-05-22)
branchavr32
changeset 1371 802c132f1f71
child 1373 1f3e9f7ada71
permissions -rw-r--r--
Added initial AVR32 support (bare-metal,newlib)
     1 # newlib options
     2 # depends on EXPERIMENTAL
     3 
     4 config LIBC_newlib
     5     help
     6     Newlib is a C library intended for use on embedded systems. It is a 
     7     conglomeration of several library parts, all under free software 
     8     licenses that make them easily usable on embedded products. Newlib 
     9     is only available in source form. It can be compiled for a wide 
    10     array of processors, and will usually work on any architecture with
    11     the addition of a few low-level routines. 
    12 
    13 choice
    14     bool
    15     prompt "newlib version"
    16 
    17 config NEWLIB_V_1_17_0
    18     bool
    19     prompt "1.17.0"
    20 
    21 # CT_INSERT_VERSION_ABOVE
    22 # Don't remove above line!
    23 
    24 endchoice
    25 
    26 config LIBC_VERSION
    27     string
    28     default "1.17.0" if NEWLIB_V_1_17_0
    29 
    30 # CT_INSERT_VERSION_STRING_ABOVE
    31 # Don't remove above line!