config/libc/glibc.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 1345 27fec561af53
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@448
     1
# glibc options
yann@1345
     2
# depends on ! BARE_METAL && ARCH_USE_MMU
yann@448
     3
yann@922
     4
config LIBC_glibc
yann@922
     5
    select LIBC_SUPPORT_NPTL
yann@922
     6
    select LIBC_SUPPORT_LINUXTHREADS
yann@922
     7
    help
yann@922
     8
      The de-facto standard for Linux distributions.
yann@922
     9
      Feature-rich, but large...  Most usefull for desktop-like systems.
yann@852
    10
yann@448
    11
choice
yann@448
    12
    bool
yann@448
    13
    prompt "glibc version"
yann@448
    14
yann@1534
    15
config LIBC_V_2_9
yann@448
    16
    bool
yann@1534
    17
    prompt "2.9"
yann@1534
    18
    select LIBC_GLIBC_2_8_or_later
yann@448
    19
yann@1114
    20
config LIBC_V_2_8
yann@1114
    21
    bool
yann@1260
    22
    prompt "2.8"
yann@1314
    23
    select LIBC_GLIBC_2_8_or_later
yann@1114
    24
yann@1534
    25
config LIBC_V_2_7
yann@1114
    26
    bool
yann@1534
    27
    prompt "2.7"
yann@1534
    28
yann@1534
    29
config LIBC_V_2_6_1
yann@1534
    30
    bool
yann@1534
    31
    prompt "2.6.1"
yann@1534
    32
yann@1534
    33
config LIBC_V_2_6
yann@1534
    34
    bool
yann@1534
    35
    prompt "2.6"
yann@1534
    36
yann@1534
    37
config LIBC_V_2_5_1
yann@1534
    38
    bool
yann@1534
    39
    prompt "2.5.1"
yann@1534
    40
yann@1534
    41
config LIBC_V_2_5
yann@1534
    42
    bool
yann@1534
    43
    prompt "2.5"
yann@1534
    44
yann@1534
    45
config LIBC_V_2_3_6
yann@1534
    46
    bool
yann@1534
    47
    prompt "2.3.6 (OBSOLETE)"
yann@1534
    48
    depends on OBSOLETE
yann@1114
    49
yann@448
    50
# CT_INSERT_VERSION_ABOVE
yann@448
    51
# Don't remove above line!
yann@865
    52
yann@865
    53
config LIBC_V_LATEST
yann@865
    54
    bool
yann@865
    55
    prompt "'latest' snapshot (EXPERIMENTAL)"
yann@865
    56
    depends on EXPERIMENTAL
yann@865
    57
yann@865
    58
config LIBC_V_date
yann@865
    59
    bool
yann@865
    60
    prompt "<specific date> (EXPERIMENTAL)"
yann@865
    61
    depends on EXPERIMENTAL
yann@865
    62
yann@448
    63
endchoice
yann@448
    64
yann@448
    65
config LIBC_VERSION
yann@448
    66
    string
yann@710
    67
    prompt "Enter date (YYYYMMDD)" if LIBC_V_date
yann@710
    68
    default "latest" if LIBC_V_LATEST
yann@1534
    69
    default "2.9" if LIBC_V_2_9
yann@1534
    70
    default "2.8" if LIBC_V_2_8
yann@1534
    71
    default "2.7" if LIBC_V_2_7
yann@1534
    72
    default "2.6.1" if LIBC_V_2_6_1
yann@1534
    73
    default "2.6" if LIBC_V_2_6
yann@1534
    74
    default "2.5.1" if LIBC_V_2_5_1
yann@1534
    75
    default "2.5" if LIBC_V_2_5
yann@448
    76
    default "2.3.6" if LIBC_V_2_3_6
yann@448
    77
# CT_INSERT_VERSION_STRING_ABOVE
yann@448
    78
# Don't remove above line!
yann@448
    79
yann@1314
    80
config LIBC_GLIBC_2_8_or_later
yann@1314
    81
    bool
yann@1314
    82
    default n
yann@1314
    83
yann@1260
    84
choice
yann@1114
    85
    bool
yann@1260
    86
    prompt "Retrieval method"
yann@1260
    87
    default LIBC_GLIBC_TARBALL
yann@1114
    88
yann@1260
    89
config LIBC_GLIBC_TARBALL
yann@1260
    90
    bool
yann@1260
    91
    prompt "Released tarball"
yann@1314
    92
    depends on ! LIBC_GLIBC_2_8_or_later || ! ( LIBC_GLIBC_USE_PORTS || ( LIBC_ADDONS_LIST != "" ) )
yann@1260
    93
    help
yann@1260
    94
      Until end of Februrary 2009, there was no tarball for glibc releases
yann@1260
    95
      2.8 and later. This was intentional.
yann@1260
    96
      
yann@1260
    97
      Then, all of a sudden, tarballs for those releases have appeared at the
yann@1260
    98
      traditional download place (ftp.gnu.org).
yann@1260
    99
      
yann@1260
   100
      Some of the glibc people argue that fixes are committed to the maintenance
yann@1260
   101
      branch, and thus it is the best plac e to retrieve the glibc from.
yann@1260
   102
      On the other hand, it might be preferable to always generate a toolchain
yann@1260
   103
      using a known code-base, so the toolchain can be reproducible.
yann@1260
   104
      
yann@1260
   105
      For version prior to 2.8, tarballs were readily available.
yann@1260
   106
      
yann@1260
   107
      If you want your toolchain to really be reproducible, say 'Y' here.
yann@1260
   108
      If you can live with a moving code-base, look at the other choice
yann@1260
   109
      entries, below.
yann@1114
   110
yann@1260
   111
config LIBC_GLIBC_CVS
yann@1114
   112
    bool
yann@1260
   113
    prompt "CVS checkout"
yann@1114
   114
    help
yann@1260
   115
      See the help for the entry "Released tarball", above.
yann@1260
   116
      
yann@1260
   117
      If you can live with a moving code-base, say 'Y' here.
yann@1260
   118
      If you want your toolchain to really be reproducible, look at the
yann@1260
   119
      choice entry "Released tarball from FTP", above.
yann@1114
   120
yann@1260
   121
if LIBC_GLIBC_CVS
yann@1114
   122
yann@1114
   123
config LIBC_GLIBC_CVS_date
yann@1114
   124
    string
yann@1114
   125
    prompt "checkout as of date"
yann@1114
   126
    default ""
yann@1114
   127
    help
yann@1114
   128
      The date, in ISO-8601 format, at which to check out the repository.
yann@1114
   129
yann@1260
   130
endif #  LIBC_GLIBC_CVS
yann@1260
   131
yann@1260
   132
#config LIBC_GLIBC_SNAPSHOT
yann@1114
   133
#    bool
yann@1260
   134
#    prompt "Use latest nightly snapshot"
yann@1114
   135
#    help
yann@1260
   136
#      See the help for the entry "Released tarball", above.
yann@1260
   137
#      
yann@1260
   138
#      If you can live with a moving code-base, say 'Y' here.
yann@1260
   139
#      If you want your toolchain to really be reproducible, look at the
yann@1260
   140
#      choice entry "Released tarball from FTP", above.
yann@1114
   141
yann@1260
   142
endchoice