config/libc/eglibc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 13 17:51:33 2009 +0200 (2009-09-13)
changeset 1534 d4ddf19a1968
parent 1438 023fdab7a819
child 1535 073d351bdcd3
permissions -rw-r--r--
config: re-order menu entries so that latest versions are at the top

It makes better sense to have latest versions at the top of the choice
entries.
yann@787
     1
# eglibc options
yann@1345
     2
# depends on ! BARE_METAL && ARCH_USE_MMU
yann@787
     3
yann@922
     4
config LIBC_eglibc
yann@922
     5
    select LIBC_SUPPORT_NPTL
yann@922
     6
    select LIBC_SUPPORT_LINUXTHREADS
yann@922
     7
    help
yann@922
     8
      EGLIBC (Embedded GLIBC) is a variant of the standard GNU GLIBC
yann@922
     9
      that is designed to work well on embedded systems.  EGLIBC strives
yann@922
    10
      to be source and binary compatible with GLIBC.  Its goals include
yann@922
    11
      a reduced footprint, configurable components, and improved
yann@922
    12
      cross-compilation support.  EGLIBC also includes some embedded ports
yann@922
    13
      (such as e500/spe) that are normally separate add-ons of GLIBC.
yann@852
    14
yann@787
    15
choice
yann@787
    16
    bool
yann@787
    17
    prompt "eglibc version"
yann@787
    18
yann@1534
    19
config LIBC_V_2_10
yann@787
    20
    bool
yann@1534
    21
    prompt "2_10"
yann@1534
    22
yann@1534
    23
config EGLIBC_V_2_9
yann@1534
    24
    bool
yann@1534
    25
    prompt "2_9"
yann@1534
    26
yann@1534
    27
config EGLIBC_V_2_8
yann@1534
    28
    bool
yann@1534
    29
    prompt "2_8"
yann@1534
    30
yann@1534
    31
config EGLIBC_V_2_7
yann@1534
    32
    bool
yann@1534
    33
    prompt "2_7"
yann@787
    34
yann@787
    35
config EGLIBC_V_2_6
yann@787
    36
    bool
yann@1195
    37
    prompt "2_6"
yann@787
    38
yann@1534
    39
config EGLIBC_V_2_5
yann@787
    40
    bool
yann@1534
    41
    prompt "2_5"
yann@1438
    42
yann@787
    43
# CT_INSERT_VERSION_ABOVE
yann@787
    44
# Don't remove above line!
yann@865
    45
yann@865
    46
config EGLIBC_V_TRUNK
yann@865
    47
    bool
yann@865
    48
    prompt "'trunk'"
yann@865
    49
    help
yann@865
    50
      Selecting this will export the trunk of the eglibc subversion repository.
yann@865
    51
yann@787
    52
endchoice
yann@787
    53
yann@787
    54
config LIBC_VERSION
yann@787
    55
    string
yann@787
    56
    default "trunk" if EGLIBC_V_TRUNK
yann@1534
    57
    default "2_10" if LIBC_V_2_10
yann@1534
    58
    default "2_9" if EGLIBC_V_2_9
yann@1534
    59
    default "2_8" if EGLIBC_V_2_8
yann@1534
    60
    default "2_7" if EGLIBC_V_2_7
yann@1534
    61
    default "2_6" if EGLIBC_V_2_6
yann@787
    62
    default "2_5" if EGLIBC_V_2_5
yann@787
    63
# CT_INSERT_VERSION_STRING_ABOVE
yann@787
    64
# Don't remove above line!
yann@787
    65
yann@787
    66
config EGLIBC_REVISION
yann@787
    67
    string
yann@787
    68
    prompt "Revision to use"
yann@787
    69
    default "HEAD"
yann@787
    70
    help
yann@787
    71
      Enter the revision of trunk you want to use.
yann@787
    72
      Default is HEAD.
yann@787
    73
      
yann@787
    74
      A revision argument can be one of:
yann@787
    75
          NUMBER       revision number
yann@787
    76
          '{' DATE '}' revision at start of the date (*)
yann@787
    77
          'HEAD'       latest in repository
yann@787
    78
      
yann@787
    79
      (*) If you want to use a date, please use ISO-8601 formats if
yann@787
    80
          at all possible.
yann@787
    81
yann@787
    82
config EGLIBC_CHECKOUT
yann@787
    83
    bool
yann@787
    84
    prompt "checkout instead of export"
yann@787
    85
    default y if EGLIBC_V_TRUNK
yann@787
    86
    default n if ! EGLIBC_V_TRUNK
yann@787
    87
    help
yann@787
    88
      By default, the eglibc download will be an export of the subversion
yann@787
    89
      repository. If you say 'y' here, then the repository will instead be
yann@787
    90
      checked-out, so that you can update it later.
yann@787
    91
      
yann@787
    92
      Note that crosstool-NG will *not* update your working copy, you will
yann@787
    93
      have to do that yourself.