config/libc/eglibc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jan 27 21:37:03 2009 +0000 (2009-01-27)
changeset 1162 31348b787bed
parent 865 04cf91f13430
child 1195 b6b576b16e7c
permissions -rw-r--r--
Add the latest gcc-4.3.3 with the forward-ported patchset from gcc-4.3.2.

/trunk/patches/gcc/4.3.3/210-noteGNUstack-00.patch | 47 26 21 0 ++++---
/trunk/patches/gcc/4.3.3/270-missing-execinfo_h.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/260-uclibc-conf-noupstream.patch | 13 9 4 0 +-
/trunk/patches/gcc/4.3.3/220-noteGNUstack-01.patch | 97 51 46 0 +++++++-------
/trunk/patches/gcc/4.3.3/240-pr25343.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/100-alpha-mieee-default.patch | 17 11 6 0 +-
/trunk/patches/gcc/4.3.3/230-pr34571.patch | 23 8 15 0 +--
/trunk/patches/gcc/4.3.3/350-sh-without-headers.patch | 17 10 7 0 +-
/trunk/patches/gcc/4.3.3/330-unwind-for-uClibc.patch | 19 12 7 0 ++-
/trunk/patches/gcc/4.3.3/190-libstdc++-pic.patch | 17 11 6 0 +-
/trunk/patches/gcc/4.3.3/150-sparc64-bsd.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/290-index_macro.patch | 17 11 6 0 +-
/trunk/patches/gcc/4.3.3/140-netbsd-symbolic.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/110-trampolinewarn.patch | 17 11 6 0 +-
/trunk/patches/gcc/4.3.3/160-flatten-switch-stmt-00.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/280-c99-complex-ugly-hack.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/300-libmudflap-susv3-legacy.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/170-libiberty-pic.patch | 11 8 3 0 +-
/trunk/patches/gcc/4.3.3/250-sh-pr24836.patch | 17 11 6 0 +-
/trunk/patches/gcc/4.3.3/120-java-nomulti.patch | 17 11 6 0 +-
/trunk/patches/gcc/4.3.3/320-alpha-signal_h.patch | 14 10 4 0 +-
/trunk/patches/gcc/4.3.3/180-superh-default-multilib.patch | 13 9 4 0 +-
/trunk/patches/gcc/4.3.3/340-make-mno-spe-work-as-expected.patch | 41 23 18 0 +++---
/trunk/patches/gcc/4.3.3/200-pr24170.patch | 23 14 9 0 ++-
/trunk/patches/gcc/4.3.3/310-arm-softfloat.patch | 17 11 6 0 +-
/trunk/patches/gcc/4.3.3/130-cross-compile.patch | 23 14 9 0 ++-
/trunk/config/cc/gcc.in | 7 7 0 0 +
27 files changed, 334 insertions(+), 210 deletions(-)
yann@922
     1
# EXPERIMENTAL
yann@787
     2
# eglibc options
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@787
    19
config EGLIBC_V_2_5
yann@787
    20
    bool
yann@787
    21
    prompt "2.5"
yann@787
    22
yann@787
    23
config EGLIBC_V_2_6
yann@787
    24
    bool
yann@787
    25
    prompt "2.6"
yann@787
    26
yann@787
    27
config EGLIBC_V_2_7
yann@787
    28
    bool
yann@787
    29
    prompt "2.7"
yann@787
    30
yann@787
    31
config EGLIBC_V_2_8
yann@787
    32
    bool
yann@787
    33
    prompt "2.8"
yann@787
    34
yann@787
    35
# CT_INSERT_VERSION_ABOVE
yann@787
    36
# Don't remove above line!
yann@865
    37
yann@865
    38
config EGLIBC_V_TRUNK
yann@865
    39
    bool
yann@865
    40
    prompt "'trunk'"
yann@865
    41
    help
yann@865
    42
      Selecting this will export the trunk of the eglibc subversion repository.
yann@865
    43
yann@787
    44
endchoice
yann@787
    45
yann@787
    46
config LIBC_VERSION
yann@787
    47
    string
yann@787
    48
    default "trunk" if EGLIBC_V_TRUNK
yann@787
    49
    default "2_5" if EGLIBC_V_2_5
yann@787
    50
    default "2_6" if EGLIBC_V_2_6
yann@787
    51
    default "2_7" if EGLIBC_V_2_7
yann@787
    52
    default "2_8" if EGLIBC_V_2_8
yann@787
    53
# CT_INSERT_VERSION_STRING_ABOVE
yann@787
    54
# Don't remove above line!
yann@787
    55
yann@787
    56
config EGLIBC_REVISION
yann@787
    57
    string
yann@787
    58
    prompt "Revision to use"
yann@787
    59
    default "HEAD"
yann@787
    60
    help
yann@787
    61
      Enter the revision of trunk you want to use.
yann@787
    62
      Default is HEAD.
yann@787
    63
      
yann@787
    64
      A revision argument can be one of:
yann@787
    65
          NUMBER       revision number
yann@787
    66
          '{' DATE '}' revision at start of the date (*)
yann@787
    67
          'HEAD'       latest in repository
yann@787
    68
      
yann@787
    69
      (*) If you want to use a date, please use ISO-8601 formats if
yann@787
    70
          at all possible.
yann@787
    71
yann@787
    72
config EGLIBC_CHECKOUT
yann@787
    73
    bool
yann@787
    74
    prompt "checkout instead of export"
yann@787
    75
    default y if EGLIBC_V_TRUNK
yann@787
    76
    default n if ! EGLIBC_V_TRUNK
yann@787
    77
    help
yann@787
    78
      By default, the eglibc download will be an export of the subversion
yann@787
    79
      repository. If you say 'y' here, then the repository will instead be
yann@787
    80
      checked-out, so that you can update it later.
yann@787
    81
      
yann@787
    82
      Note that crosstool-NG will *not* update your working copy, you will
yann@787
    83
      have to do that yourself.