config/libc/newlib.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun Nov 11 21:42:47 2012 +0100 (2012-11-11)
branch1.16
changeset 3107 91a52bc04af9
parent 2535 e9e8cafaf412
child 3047 6d88d6558b7a
permissions -rw-r--r--
1.16: close branch

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # newlib options
     2 
     3 ## depends on BARE_METAL
     4 ##
     5 ## select LIBC_SUPPORT_THREADS_NONE
     6 ##
     7 ## help Newlib is a C library intended for use on embedded systems. It is a
     8 ## help conglomeration of several library parts, all under free software
     9 ## help licenses that make them easily usable on embedded products. Newlib
    10 ## help is only available in source form. It can be compiled for a wide
    11 ## help array of processors, and will usually work on any architecture with
    12 ## help the addition of a few low-level routines.
    13 
    14 choice
    15     bool
    16     prompt "newlib version"
    17 # Don't remove next line
    18 # CT_INSERT_VERSION_BELOW
    19 
    20 config LIBC_NEWLIB_V_1_19_0
    21     bool
    22     prompt "1.19.0 (EXPERIMENTAL)"
    23     depends on EXPERIMENTAL
    24 
    25 config LIBC_NEWLIB_V_1_18_0
    26     bool
    27     prompt "1.18.0 (EXPERIMENTAL)"
    28     depends on EXPERIMENTAL
    29 
    30 config LIBC_NEWLIB_V_1_17_0
    31     bool
    32     prompt "1.17.0"
    33 
    34 config LIBC_NEWLIB_CVS
    35     bool
    36     prompt "Use CVS snapshot"
    37     depends on CONFIGURE_has_cvs
    38     help
    39       The newlib "team" rolls new releases about once a year (december).
    40       This is quite a long time between releases, in case code was fixed.
    41       
    42       Saying 'Y' here will allow you to use the bleeding-edge code from
    43       the CVS repository. This may or may not fix your issues, may or may
    44       not build, may or may not crash your machine, may or may not withdraw
    45       money from your bank account, may or may not date your girlfriend,
    46       may or may not resurect Elvis... :-)
    47       
    48       In a word: use the CVS snapshot at your own risk! 
    49 
    50 endchoice
    51 
    52 config LIBC_VERSION
    53     string
    54     prompt "use CVS tag" if LIBC_NEWLIB_CVS
    55 # Don't remove next line
    56 # CT_INSERT_VERSION_STRING_BELOW
    57     default "1.19.0" if LIBC_NEWLIB_V_1_19_0
    58     default "1.18.0" if LIBC_NEWLIB_V_1_18_0
    59     default "1.17.0" if LIBC_NEWLIB_V_1_17_0
    60     help
    61       Enter the tag you want to use.
    62       Leave empty to use the 'head' of the repository.
    63 
    64 comment "Architecture specific options"
    65 
    66 config ATMEL_AVR32_HEADERS
    67     bool
    68     prompt "Install Atmel AVR32 headers"
    69     depends on ARCH_avr32
    70     default y
    71     help
    72       Install Atmel AVR32 headers for native AVR32 development. Most
    73       AVR32 MCU devices are supported.
    74       
    75       If you do native AVR32 development you want to say 'Y' here.