config/libc/glibc-eglibc-common.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Aug 26 16:47:47 2008 +0000 (2008-08-26)
changeset 808 0949a87e1629
child 810 5d357e239b62
permissions -rw-r--r--
Commonalise options common to both glibc and eglibc.

/trunk/scripts/build/libc_eglibc.sh | 6 3 3 0 +-
/trunk/config/libc/glibc.in | 63 2 61 0 +---------------------------------
/trunk/config/libc/eglibc.in | 61 1 60 0 +--------------------------------
/trunk/config/libc/eglibc-glibc-common.in | 1 1 0 0 +
/trunk/config/libc/glibc-eglibc-common.in | 69 69 0 0 +++++++++++++++++++++++++++++++++++++
5 files changed, 76 insertions(+), 124 deletions(-)
yann@808
     1
# This file contains the common configuration options
yann@808
     2
# that apply to both glibc and eglibc.
yann@808
     3
#
yann@808
     4
# Please note:
yann@808
     5
# the symlink is a hack around the fact that mconf can not parse
yann@808
     6
# the same file more than once, and errors out if it is the case.
yann@808
     7
# If mconf is updated to accept multiple inclusion of the same
yann@808
     8
# file, then the symlink can go (and the includers be updated).
yann@808
     9
yann@808
    10
config LIBC_GLIBC_EXTRA_CONFIG
yann@808
    11
    string
yann@808
    12
    prompt "extra config"
yann@808
    13
    default ""
yann@808
    14
    help
yann@808
    15
      Extra flags to pass onto ./configure when configuring.
yann@808
    16
yann@808
    17
      Eg.: --enable-static-nss
yann@808
    18
yann@808
    19
config LIBC_GLIBC_EXTRA_CFLAGS
yann@808
    20
    string
yann@808
    21
    prompt "extra target CFLAGS"
yann@808
    22
    default ""
yann@808
    23
    help
yann@808
    24
      Extra target CFLAGS to use when building.
yann@808
    25
yann@808
    26
config LIBC_EXTRA_CC_ARGS
yann@808
    27
    string
yann@808
    28
    prompt "gcc extra flags"
yann@808
    29
    default ""
yann@808
    30
    help
yann@808
    31
      Extra flags to pass gcc when building.
yann@808
    32
yann@808
    33
      Seldom used, except for sparc64 which seems to need the flag -64
yann@808
    34
      to be passed onto gcc.
yann@808
    35
yann@808
    36
config LIBC_GLIBC_USE_PORTS
yann@808
    37
    bool
yann@808
    38
    prompt "Use the ports addon"
yann@808
    39
    default n
yann@808
    40
    help
yann@808
    41
      The ports addon contains some architecture ports that are not available
yann@808
    42
      in the official distribution.
yann@808
    43
yann@808
    44
      For example, this is the case for ARM with for 2.4 and above.
yann@808
    45
yann@808
    46
      Say n only if you're sure that your architecture is in the official
yann@808
    47
      distribution for your chosen version.
yann@808
    48
yann@808
    49
config LIBC_ADDONS
yann@808
    50
    bool
yann@808
    51
    prompt "Pass extra addons list"
yann@808
    52
    default n
yann@808
    53
    help
yann@808
    54
      If you say Y here, you'll be able to give the list of addons you want to
yann@808
    55
      include in your C library.
yann@808
    56
yann@808
    57
config LIBC_ADDONS_LIST
yann@808
    58
    string
yann@808
    59
    prompt "Extra addons"
yann@808
    60
    default ""
yann@808
    61
    depends on LIBC_ADDONS
yann@808
    62
    help
yann@808
    63
      Extra addons to include. Space separated list.
yann@808
    64
yann@808
    65
      You need to specify neither linuxthreads nor nptl, as they are added
yann@808
    66
      automagically for you depending on the threading model you choosed
yann@808
    67
      earlier.
yann@808
    68
yann@808
    69
      Eg.: crypt        (for very old libces)