config/libc/glibc-eglibc-common.in
changeset 808 0949a87e1629
child 810 5d357e239b62
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/libc/glibc-eglibc-common.in	Tue Aug 26 16:47:47 2008 +0000
     1.3 @@ -0,0 +1,69 @@
     1.4 +# This file contains the common configuration options
     1.5 +# that apply to both glibc and eglibc.
     1.6 +#
     1.7 +# Please note:
     1.8 +# the symlink is a hack around the fact that mconf can not parse
     1.9 +# the same file more than once, and errors out if it is the case.
    1.10 +# If mconf is updated to accept multiple inclusion of the same
    1.11 +# file, then the symlink can go (and the includers be updated).
    1.12 +
    1.13 +config LIBC_GLIBC_EXTRA_CONFIG
    1.14 +    string
    1.15 +    prompt "extra config"
    1.16 +    default ""
    1.17 +    help
    1.18 +      Extra flags to pass onto ./configure when configuring.
    1.19 +
    1.20 +      Eg.: --enable-static-nss
    1.21 +
    1.22 +config LIBC_GLIBC_EXTRA_CFLAGS
    1.23 +    string
    1.24 +    prompt "extra target CFLAGS"
    1.25 +    default ""
    1.26 +    help
    1.27 +      Extra target CFLAGS to use when building.
    1.28 +
    1.29 +config LIBC_EXTRA_CC_ARGS
    1.30 +    string
    1.31 +    prompt "gcc extra flags"
    1.32 +    default ""
    1.33 +    help
    1.34 +      Extra flags to pass gcc when building.
    1.35 +
    1.36 +      Seldom used, except for sparc64 which seems to need the flag -64
    1.37 +      to be passed onto gcc.
    1.38 +
    1.39 +config LIBC_GLIBC_USE_PORTS
    1.40 +    bool
    1.41 +    prompt "Use the ports addon"
    1.42 +    default n
    1.43 +    help
    1.44 +      The ports addon contains some architecture ports that are not available
    1.45 +      in the official distribution.
    1.46 +
    1.47 +      For example, this is the case for ARM with for 2.4 and above.
    1.48 +
    1.49 +      Say n only if you're sure that your architecture is in the official
    1.50 +      distribution for your chosen version.
    1.51 +
    1.52 +config LIBC_ADDONS
    1.53 +    bool
    1.54 +    prompt "Pass extra addons list"
    1.55 +    default n
    1.56 +    help
    1.57 +      If you say Y here, you'll be able to give the list of addons you want to
    1.58 +      include in your C library.
    1.59 +
    1.60 +config LIBC_ADDONS_LIST
    1.61 +    string
    1.62 +    prompt "Extra addons"
    1.63 +    default ""
    1.64 +    depends on LIBC_ADDONS
    1.65 +    help
    1.66 +      Extra addons to include. Space separated list.
    1.67 +
    1.68 +      You need to specify neither linuxthreads nor nptl, as they are added
    1.69 +      automagically for you depending on the threading model you choosed
    1.70 +      earlier.
    1.71 +
    1.72 +      Eg.: crypt        (for very old libces)