config/libc/glibc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Sep 02 19:50:45 2008 +0000 (2008-09-02)
changeset 824 cc4590c03dd1
parent 808 0949a87e1629
child 852 c17bb66e2aa5
permissions -rw-r--r--
Mark some features as no longer being EXPERIMENTAL.

/trunk/config/debug/gdb.in | 3 1 2 0 +--
/trunk/config/libc/glibc.in | 1 0 1 0 -
2 files changed, 1 insertion(+), 3 deletions(-)
     1 # glibc options
     2 
     3 choice
     4     bool
     5     prompt "glibc version"
     6 
     7 config LIBC_V_LATEST
     8     bool
     9     prompt "'latest' snapshot (EXPERIMENTAL)"
    10     depends on EXPERIMENTAL
    11 
    12 config LIBC_V_date
    13     bool
    14     prompt "<specific date> (EXPERIMENTAL)"
    15     depends on EXPERIMENTAL
    16 
    17 config LIBC_V_2_3_6
    18     bool
    19     prompt "2.3.6 (OBSOLETE)"
    20     depends on OBSOLETE
    21 
    22 config LIBC_V_2_5
    23     bool
    24     prompt "2.5"
    25 
    26 config LIBC_V_2_5_1
    27     bool
    28     prompt "2.5.1"
    29 
    30 config LIBC_V_2_6
    31     bool
    32     prompt "2.6"
    33 
    34 config LIBC_V_2_6_1
    35     bool
    36     prompt "2.6.1"
    37 
    38 config LIBC_V_2_7
    39     bool
    40     prompt "2.7"
    41 
    42 # CT_INSERT_VERSION_ABOVE
    43 # Don't remove above line!
    44 endchoice
    45 
    46 config LIBC_VERSION
    47     string
    48     prompt "Enter date (YYYYMMDD)" if LIBC_V_date
    49     default "latest" if LIBC_V_LATEST
    50     default "2.3.6" if LIBC_V_2_3_6
    51     default "2.4" if LIBC_V_2_4
    52     default "2.5" if LIBC_V_2_5
    53     default "2.5.1" if LIBC_V_2_5_1
    54     default "2.6" if LIBC_V_2_6
    55     default "2.6.1" if LIBC_V_2_6_1
    56     default "2.7" if LIBC_V_2_7
    57 # CT_INSERT_VERSION_STRING_ABOVE
    58 # Don't remove above line!
    59 
    60 # Please note: This is not used for now (no sh support).
    61 config LIBC_GLIBC_CONFIGPARMS
    62     string
    63 #    prompt "Extra config params (READ HELP)"
    64     default "" if ARCH != "sh3" && ARCH != "sh4"
    65     default "no-z-defs=yes" if ARCH = "sh3" || ARCH = "sh4"
    66     help
    67       Some architectures need to set options in the file configparms.
    68       This is the case for sh3/4, which really need to set configparms as of
    69       gcc-3.4/glibc-2.3.2.
    70 
    71       Unless you are building a toolchain for sh3/4, you should leave that empty.
    72 
    73       Note: this is awkward, doesn't work well if you need more than one
    74             line in configparms
    75 
    76 source config/libc/glibc-eglibc-common.in