config/libc/eglibc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Sep 18 09:22:25 2008 +0000 (2008-09-18)
changeset 865 04cf91f13430
parent 852 c17bb66e2aa5
child 922 3f0456891349
permissions -rw-r--r--
Move snapshots version after numbered versions (aka releases).

/trunk/config/debug/gdb.in | 13 7 6 0 +++++++------
/trunk/config/libc/glibc.in | 21 11 10 0 +++++++++++----------
/trunk/config/libc/uClibc.in | 21 11 10 0 +++++++++++----------
/trunk/config/libc/eglibc.in | 13 7 6 0 +++++++------
4 files changed, 36 insertions(+), 32 deletions(-)
     1 # eglibc options
     2 
     3 comment "eglibc specific options"
     4 
     5 choice
     6     bool
     7     prompt "eglibc version"
     8 
     9 config EGLIBC_V_2_5
    10     bool
    11     prompt "2.5"
    12 
    13 config EGLIBC_V_2_6
    14     bool
    15     prompt "2.6"
    16 
    17 config EGLIBC_V_2_7
    18     bool
    19     prompt "2.7"
    20 
    21 config EGLIBC_V_2_8
    22     bool
    23     prompt "2.8"
    24 
    25 # CT_INSERT_VERSION_ABOVE
    26 # Don't remove above line!
    27 
    28 config EGLIBC_V_TRUNK
    29     bool
    30     prompt "'trunk'"
    31     help
    32       Selecting this will export the trunk of the eglibc subversion repository.
    33 
    34 endchoice
    35 
    36 config LIBC_VERSION
    37     string
    38     default "trunk" if EGLIBC_V_TRUNK
    39     default "2_5" if EGLIBC_V_2_5
    40     default "2_6" if EGLIBC_V_2_6
    41     default "2_7" if EGLIBC_V_2_7
    42     default "2_8" if EGLIBC_V_2_8
    43 # CT_INSERT_VERSION_STRING_ABOVE
    44 # Don't remove above line!
    45 
    46 config EGLIBC_REVISION
    47     string
    48     prompt "Revision to use"
    49     default "HEAD"
    50     help
    51       Enter the revision of trunk you want to use.
    52       Default is HEAD.
    53       
    54       A revision argument can be one of:
    55           NUMBER       revision number
    56           '{' DATE '}' revision at start of the date (*)
    57           'HEAD'       latest in repository
    58       
    59       (*) If you want to use a date, please use ISO-8601 formats if
    60           at all possible.
    61 
    62 config EGLIBC_CHECKOUT
    63     bool
    64     prompt "checkout instead of export"
    65     default y if EGLIBC_V_TRUNK
    66     default n if ! EGLIBC_V_TRUNK
    67     help
    68       By default, the eglibc download will be an export of the subversion
    69       repository. If you say 'y' here, then the repository will instead be
    70       checked-out, so that you can update it later.
    71       
    72       Note that crosstool-NG will *not* update your working copy, you will
    73       have to do that yourself.