config/libc/eglibc.in
author Daniel Zimmermann <netzimme@gmail.com>
Sat Nov 16 11:33:31 2013 +0100 (2013-11-16)
changeset 3250 48f5cb844d26
parent 3148 882a7e02d3d5
child 3251 ec603d1371b9
permissions -rw-r--r--
debug/gdb: add gdb 7.5.1 and gdb 7.6.1

debug/gdb: add gdb 7.5.1 and gdb 7.6.1

add gdb version 7.5.1 and gdb version 7.6.1

Signed-off-by: "Daniel Zimmermann" <netzimme@gmail.com>
Message-Id: <2fc4afda19bca864dd9c.1384600083@haus-VirtualBox>
Patchwork-Id: 291762
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
yann@787
     1
# eglibc options
yann@787
     2
diorcet@3112
     3
## depends on ! WINDOWS && ! BARE_METAL && ARCH_USE_MMU
yann@2444
     4
##
yann@2444
     5
## select LIBC_SUPPORT_NPTL
yann@2444
     6
## select LIBC_SUPPORT_LINUXTHREADS
diorcet@3131
     7
## select CC_CORE_PASSES_NEEDED
yann@2444
     8
##
yann@2444
     9
## help EGLIBC (Embedded GLIBC) is a variant of the standard GNU GLIBC
yann@2444
    10
## help that is designed to work well on embedded systems.  EGLIBC strives
yann@2444
    11
## help to be source and binary compatible with GLIBC.  Its goals include
yann@2444
    12
## help a reduced footprint, configurable components, and improved
yann@2444
    13
## help cross-compilation support.  EGLIBC also includes some embedded ports
yann@2444
    14
## help (such as e500/spe) that are normally separate add-ons of GLIBC.
yann@852
    15
yann@787
    16
choice
yann@787
    17
    bool
yann@787
    18
    prompt "eglibc version"
yann@1535
    19
# Don't remove next line
yann@1535
    20
# CT_INSERT_VERSION_BELOW
yann@787
    21
yann@3243
    22
config LIBC_EGLIBC_V_2_18
yann@3243
    23
    bool
yann@3243
    24
    prompt "2_18"
yann@3243
    25
    select LIBC_EGLIBC_2_16_or_later
yann@3243
    26
yann@3148
    27
config LIBC_EGLIBC_V_2_17
yann@3148
    28
    bool
yann@3148
    29
    prompt "2_17"
yann@3148
    30
    select LIBC_EGLIBC_2_16_or_later
yann@3148
    31
bryanhundven@3014
    32
config LIBC_EGLIBC_V_2_16
bryanhundven@3014
    33
    bool
bryanhundven@3014
    34
    prompt "2_16"
bryanhundven@3014
    35
    select LIBC_EGLIBC_2_16_or_later
bryanhundven@3014
    36
bryanhundven@2909
    37
config LIBC_EGLIBC_V_2_15
bryanhundven@2909
    38
    bool
bryanhundven@2909
    39
    prompt "2_15"
bryanhundven@2909
    40
bryanhundven@2512
    41
config LIBC_EGLIBC_V_2_14
bryanhundven@2512
    42
    bool
bryanhundven@2512
    43
    prompt "2_14"
bryanhundven@2512
    44
bryanhundven@2299
    45
config LIBC_EGLIBC_V_2_13
bryanhundven@2299
    46
    bool
bryanhundven@2299
    47
    prompt "2_13"
bryanhundven@2299
    48
bryanhundven@2239
    49
config LIBC_EGLIBC_V_2_12
bryanhundven@2156
    50
    bool
bryanhundven@2156
    51
    prompt "2_12"
bryanhundven@2156
    52
bryanhundven@2239
    53
config LIBC_EGLIBC_V_2_11
bryanhundven@2156
    54
    bool
bryanhundven@2156
    55
    prompt "2_11"
bryanhundven@2156
    56
bryanhundven@2239
    57
config LIBC_EGLIBC_V_2_10
yann@787
    58
    bool
yann@1534
    59
    prompt "2_10"
yann@1534
    60
bryanhundven@2239
    61
config LIBC_EGLIBC_V_2_9
yann@1534
    62
    bool
yann@1534
    63
    prompt "2_9"
yann@1534
    64
bryanhundven@2239
    65
config LIBC_EGLIBC_V_TRUNK
yann@865
    66
    bool
yann@865
    67
    prompt "'trunk'"
yann@3144
    68
    select LIBC_EGLIBC_2_16_or_later
yann@865
    69
    help
yann@865
    70
      Selecting this will export the trunk of the eglibc subversion repository.
yann@865
    71
yann@787
    72
endchoice
yann@787
    73
yann@787
    74
config LIBC_VERSION
yann@787
    75
    string
yann@1535
    76
# Don't remove next line
yann@1535
    77
# CT_INSERT_VERSION_STRING_BELOW
yann@3243
    78
    default "2_18" if LIBC_EGLIBC_V_2_18
yann@3148
    79
    default "2_17" if LIBC_EGLIBC_V_2_17
bryanhundven@3014
    80
    default "2_16" if LIBC_EGLIBC_V_2_16
bryanhundven@2909
    81
    default "2_15" if LIBC_EGLIBC_V_2_15
bryanhundven@2512
    82
    default "2_14" if LIBC_EGLIBC_V_2_14
bryanhundven@2299
    83
    default "2_13" if LIBC_EGLIBC_V_2_13
bryanhundven@2239
    84
    default "2_12" if LIBC_EGLIBC_V_2_12
bryanhundven@2239
    85
    default "2_11" if LIBC_EGLIBC_V_2_11
bryanhundven@2239
    86
    default "2_10" if LIBC_EGLIBC_V_2_10
bryanhundven@2239
    87
    default "2_9" if LIBC_EGLIBC_V_2_9
bryanhundven@2239
    88
    default "trunk" if LIBC_EGLIBC_V_TRUNK
yann@787
    89
bryanhundven@3014
    90
config LIBC_EGLIBC_2_16_or_later
bryanhundven@3014
    91
    bool
benoit@2489
    92
yann@2591
    93
if CONFIGURE_has_svn
yann@2591
    94
yann@787
    95
config EGLIBC_REVISION
yann@787
    96
    string
yann@787
    97
    prompt "Revision to use"
yann@787
    98
    default "HEAD"
yann@787
    99
    help
yann@787
   100
      Enter the revision of trunk you want to use.
yann@787
   101
      Default is HEAD.
yann@787
   102
      
yann@787
   103
      A revision argument can be one of:
yann@787
   104
          NUMBER       revision number
yann@787
   105
          '{' DATE '}' revision at start of the date (*)
yann@787
   106
          'HEAD'       latest in repository
yann@787
   107
      
yann@787
   108
      (*) If you want to use a date, please use ISO-8601 formats if
yann@787
   109
          at all possible.
yann@787
   110
bryanhundven@2520
   111
config EGLIBC_HTTP
bryanhundven@2520
   112
    bool
bryanhundven@2520
   113
    prompt "use http:// instead of svn://"
bryanhundven@2520
   114
    help
bryanhundven@2520
   115
      By default, when eglibc is downloaded it is checked out using
bryanhundven@2520
   116
      svn://svn.eglibc.org. This option allows you to download eglibc
bryanhundven@2520
   117
      from http://www.eglibc.org, if you are behind a proxy or firewall.
bryanhundven@2520
   118
      If you are behind a proxy, don't forget to update your
bryanhundven@2520
   119
      .subversion/servers file with your proxy info in [global].
bryanhundven@2520
   120
yann@787
   121
config EGLIBC_CHECKOUT
yann@787
   122
    bool
yann@787
   123
    prompt "checkout instead of export"
bryanhundven@2239
   124
    default y if LIBC_EGLIBC_V_TRUNK
yann@787
   125
    help
yann@787
   126
      By default, the eglibc download will be an export of the subversion
yann@787
   127
      repository. If you say 'y' here, then the repository will instead be
yann@787
   128
      checked-out, so that you can update it later.
yann@787
   129
      
yann@787
   130
      Note that crosstool-NG will *not* update your working copy, you will
yann@787
   131
      have to do that yourself.
avrac@1569
   132
yann@2591
   133
endif # ! CONFIGURE_has_svn
yann@2591
   134
if ! CONFIGURE_has_svn
yann@2591
   135
yann@2591
   136
comment "svn is missing. You'll have to either:"
yann@2591
   137
comment "|  - have a pre-downloaded local tarball"
yann@2591
   138
comment "|  - or have a LAN mirror with a pre-downloaded tarball"
yann@2591
   139
comment "otherwise you won't be able to download eglibc"
yann@2591
   140
yann@2591
   141
endif # ! CONFIGURE_has_svn
yann@2591
   142
richard@1796
   143
config EGLIBC_OPT_SIZE
richard@1796
   144
    bool
richard@1796
   145
    prompt "optimize eglibc for size (-Os)"
richard@1796
   146
    help
richard@1796
   147
      Optimize eglibc for size using -Os instead of -O2. This will make eglibc
richard@1796
   148
      smaller but may make it slower.
richard@1796
   149
avrac@1569
   150
config EGLIBC_CUSTOM_CONFIG
avrac@1569
   151
    bool
avrac@1569
   152
    prompt "Use custom configuration file"
avrac@1569
   153
    help
avrac@1569
   154
      Use a custom configuration file to disable some features in the eglibc
avrac@1569
   155
      library. The configuration file options are described in detail in the
avrac@1569
   156
      option-groups.def file in the eglibc source directory.
avrac@1569
   157
avrac@1569
   158
if EGLIBC_CUSTOM_CONFIG
avrac@1569
   159
    config EGLIBC_OPTION_GROUPS_FILE
avrac@1569
   160
        string
avrac@1569
   161
        prompt "Path to the option-groups configuration file"
avrac@1569
   162
        default ""
avrac@1569
   163
        help
avrac@1569
   164
          Path to the option groups configuration file.
avrac@1569
   165
avrac@1569
   166
    config EGLIBC_BUNDLED_NSS_CONFIG
avrac@1569
   167
        bool
avrac@1569
   168
        prompt "Use bundled NSS config file"
avrac@1569
   169
        default y
avrac@1569
   170
        help
avrac@1569
   171
          Use minimal nsswitch configuration file bundled in eglibc.
avrac@1569
   172
          This option is only meaningful when runtime nss configuration
avrac@1569
   173
          is disabled in the option groups file.
avrac@1569
   174
avrac@1569
   175
    config EGLIBC_NSS_CONFIG_FILE
avrac@1569
   176
        string
avrac@1569
   177
        prompt "Path to the NSS config file"
avrac@1569
   178
        default ""
avrac@1569
   179
        depends on !EGLIBC_BUNDLED_NSS_CONFIG
avrac@1569
   180
        help
avrac@1569
   181
          Path to the nsswitch configuration file
avrac@1569
   182
avrac@1569
   183
    config EGLIBC_BUNDLED_NSS_FUNCTIONS
avrac@1569
   184
        bool
avrac@1569
   185
        prompt "Use bundled NSS functions file"
avrac@1569
   186
        default y
avrac@1569
   187
        help
avrac@1569
   188
          Use minimal nsswitch functions file bundled in eglibc.
avrac@1569
   189
          This option is only meaningful when runtime nss configuration
avrac@1569
   190
          is disabled in the option groups file.
avrac@1569
   191
avrac@1569
   192
    config EGLIBC_NSS_FUNCTIONS_FILE
avrac@1569
   193
        string
avrac@1569
   194
        prompt "Path to the NSS functions file"
avrac@1569
   195
        default ""
avrac@1569
   196
        depends on !EGLIBC_BUNDLED_NSS_FUNCTIONS
avrac@1569
   197
        help
avrac@1569
   198
          Path to the nsswitch functions file
avrac@1569
   199
endif