config/libc/newlib.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Dec 26 12:15:10 2012 +0100 (2012-12-26)
changeset 3144 481658dd0e7f
parent 3095 ee3bc44bf7f9
child 3149 e1611da4bb05
permissions -rw-r--r--
libc/eglibc: remove now superfluous config knobs

All eglibc versions we now have support pkgversion and bugurl.

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 ## select CC_CORE_PASSES_NEEDED
     7 ##
     8 ## help Newlib is a C library intended for use on embedded systems. It is a
     9 ## help conglomeration of several library parts, all under free software
    10 ## help licenses that make them easily usable on embedded products. Newlib
    11 ## help is only available in source form. It can be compiled for a wide
    12 ## help array of processors, and will usually work on any architecture with
    13 ## help the addition of a few low-level routines.
    14 
    15 choice
    16     bool
    17     prompt "newlib version"
    18 # Don't remove next line
    19 # CT_INSERT_VERSION_BELOW
    20 
    21 config LIBC_NEWLIB_V_1_20_0
    22     bool
    23     prompt "1.20.0 (EXPERIMENTAL)"
    24     depends on EXPERIMENTAL
    25 
    26 config LIBC_NEWLIB_V_1_19_0
    27     bool
    28     prompt "1.19.0 (EXPERIMENTAL)"
    29     depends on EXPERIMENTAL
    30 
    31 config LIBC_NEWLIB_V_1_18_0
    32     bool
    33     prompt "1.18.0 (EXPERIMENTAL)"
    34     depends on EXPERIMENTAL
    35 
    36 config LIBC_NEWLIB_V_1_17_0
    37     bool
    38     prompt "1.17.0"
    39 
    40 config LIBC_NEWLIB_CUSTOM
    41     bool
    42     prompt "Custom newlib"
    43     depends on EXPERIMENTAL
    44 
    45 endchoice
    46 
    47 if LIBC_NEWLIB_CUSTOM
    48 
    49 config LIBC_NEWLIB_CUSTOM_LOCATION
    50     string
    51     prompt "Full path to custom newlib source"
    52     default ""
    53     help
    54       Enter the path to the directory (or tarball) of your source for newlib,
    55       or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/newlib
    56 
    57 endif # LIBC_NEWLIB_CUSTOM
    58 
    59 config LIBC_VERSION
    60     string
    61 # Don't remove next line
    62 # CT_INSERT_VERSION_STRING_BELOW
    63     default "1.20.0" if LIBC_NEWLIB_V_1_20_0
    64     default "1.19.0" if LIBC_NEWLIB_V_1_19_0
    65     default "1.18.0" if LIBC_NEWLIB_V_1_18_0
    66     default "1.17.0" if LIBC_NEWLIB_V_1_17_0
    67     default "custom" if LIBC_NEWLIB_CUSTOM
    68     help
    69       Enter the tag you want to use.
    70       Leave empty to use the 'head' of the repository.
    71 
    72 comment "Architecture specific options"
    73 
    74 config ATMEL_AVR32_HEADERS
    75     bool
    76     prompt "Install Atmel AVR32 headers"
    77     depends on ARCH_avr32
    78     default y
    79     help
    80       Install Atmel AVR32 headers for native AVR32 development. Most
    81       AVR32 MCU devices are supported.
    82       
    83       If you do native AVR32 development you want to say 'Y' here.