2004-10-09 03:06:03 +02:00
|
|
|
# Choose uClibc options
|
|
|
|
#
|
|
|
|
|
2004-10-09 07:33:05 +02:00
|
|
|
comment "uClibc Options"
|
2004-10-09 03:06:03 +02:00
|
|
|
|
2006-12-12 08:10:54 +01:00
|
|
|
choice
|
|
|
|
prompt "uClibc C library Version"
|
2007-09-22 18:40:08 +02:00
|
|
|
default BR2_UCLIBC_VERSION_0_9_29
|
2004-10-09 03:06:03 +02:00
|
|
|
help
|
2006-12-13 07:59:01 +01:00
|
|
|
Select the version of uClibc you wish to use.
|
2006-12-12 08:10:54 +01:00
|
|
|
|
2007-02-28 23:01:12 +01:00
|
|
|
config BR2_UCLIBC_VERSION_0_9_28_3
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_DEPRECATED
|
2007-02-28 23:01:12 +01:00
|
|
|
bool "uClibc 0.9.28.3"
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_EXT_UCLIBC_VERSION_0_9_28_3
|
2007-02-22 09:53:20 +01:00
|
|
|
|
2007-05-12 20:39:28 +02:00
|
|
|
config BR2_UCLIBC_VERSION_0_9_29
|
|
|
|
bool "uClibc 0.9.29"
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_EXT_UCLIBC_VERSION_0_9_29
|
2007-05-12 20:39:28 +02:00
|
|
|
|
2008-12-01 14:02:22 +01:00
|
|
|
config BR2_UCLIBC_VERSION_0_9_30
|
|
|
|
bool "uClibc 0.9.30"
|
|
|
|
depends on BR2_EXT_UCLIBC_VERSION_0_9_30
|
|
|
|
|
2006-12-12 08:10:54 +01:00
|
|
|
config BR2_UCLIBC_VERSION_SNAPSHOT
|
|
|
|
bool "daily snapshot"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
|
|
|
|
config BR2_USE_UCLIBC_SNAPSHOT
|
2005-07-27 13:16:00 +02:00
|
|
|
string "Date (yyyymmdd) of snapshot or 'snapshot' for latest"
|
2004-10-09 03:06:03 +02:00
|
|
|
default "snapshot"
|
|
|
|
depends on BR2_UCLIBC_VERSION_SNAPSHOT
|
2005-07-27 13:16:00 +02:00
|
|
|
help
|
|
|
|
Use latest snapshot or one from a specific date?
|
2004-10-09 03:06:03 +02:00
|
|
|
|
2007-05-12 20:39:28 +02:00
|
|
|
config BR2_UCLIBC_CONFIG
|
|
|
|
string "uClibc configuration file to use?"
|
|
|
|
default "toolchain/uClibc/uClibc-0.9.28.config" if BR2_UCLIBC_VERSION_0_9_28_3
|
|
|
|
default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_0_9_29
|
2008-12-01 15:23:09 +01:00
|
|
|
default "toolchain/uClibc/uClibc-0.9.30.config" if BR2_UCLIBC_VERSION_0_9_30
|
2008-04-17 15:25:47 +02:00
|
|
|
default "toolchain/uClibc/uClibc-snapshot.config" if BR2_UCLIBC_VERSION_SNAPSHOT
|
2007-05-12 20:39:28 +02:00
|
|
|
help
|
|
|
|
Some people may wish to use their own modified uClibc configuration
|
|
|
|
file and will specify their config file location with this option.
|
|
|
|
See also docs/README in this package.
|
|
|
|
If unsure, use the default.
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
config BR2_ENABLE_LOCALE
|
|
|
|
bool "Enable locale/gettext/i18n support?"
|
|
|
|
help
|
|
|
|
Enable locale/gettext/i18n support?
|
|
|
|
|
2005-12-08 00:14:19 +01:00
|
|
|
choice
|
|
|
|
prompt "Thread library implementation"
|
|
|
|
default BR2_PTHREADS_OLD
|
2005-10-01 02:36:38 +02:00
|
|
|
help
|
2005-12-08 00:14:19 +01:00
|
|
|
Select the version of libpthreads you want to use.
|
2007-04-15 11:51:28 +02:00
|
|
|
Not all thread variants work with all versions of uClibc,
|
|
|
|
the "linuxthreads (stable/old)" may be a working fallback
|
|
|
|
if you need threading at all.
|
2005-10-01 02:36:38 +02:00
|
|
|
|
2005-12-08 00:14:19 +01:00
|
|
|
config BR2_PTHREADS_NONE
|
|
|
|
bool "none"
|
|
|
|
|
|
|
|
config BR2_PTHREADS
|
|
|
|
bool "linuxthreads"
|
|
|
|
|
|
|
|
config BR2_PTHREADS_OLD
|
|
|
|
bool "linuxthreads (stable/old)"
|
2004-10-09 03:06:03 +02:00
|
|
|
|
2005-12-08 00:14:19 +01:00
|
|
|
config BR2_PTHREADS_NATIVE
|
|
|
|
bool "Native POSIX Threading (NPTL)"
|
|
|
|
endchoice
|
2007-02-09 14:31:55 +01:00
|
|
|
|
|
|
|
config BR2_PTHREAD_DEBUG
|
|
|
|
bool "Thread library debugging"
|
|
|
|
depends on BR2_PTHREADS || BR2_PTHREADS_OLD || BR2_PTHREADS_NATIVE
|
|
|
|
help
|
|
|
|
Build the thread library with debugging enabled.
|
2007-08-16 00:35:26 +02:00
|
|
|
|
|
|
|
config BR2_UCLIBC_PROGRAM_INVOCATION
|
|
|
|
bool "Enable 'program invocation name'"
|
|
|
|
help
|
|
|
|
Support for the GNU-specific program_invocation_name and
|
2008-08-04 21:07:05 +02:00
|
|
|
program_invocation_short_name strings. Some GNU packages
|
2007-08-16 00:35:26 +02:00
|
|
|
(like tar and coreutils) utilize these for extra useful
|
|
|
|
output, but in general are not required.
|
2008-10-07 09:20:32 +02:00
|
|
|
|
|
|
|
config BR2_UCLIBC_INSTALL_TEST_SUITE
|
|
|
|
bool "Compile and install uClibc tests"
|
|
|
|
default n
|
|
|
|
select BR2_PACKAGE_MAKE
|
|
|
|
help
|
|
|
|
Enabling this option will compile and install the uClibc test suite.
|
|
|
|
This is useful if you want to check if the uClibc library is working
|
|
|
|
for your architecture and/or help developing uClibc.
|
|
|
|
|
|
|
|
The test suite will be installed into /root/uClibc directory. To run
|
|
|
|
the test suite enter the /root/uClibc/test directory and type
|
|
|
|
"make UCLIBC_ONLY=1 CC=/bin/true check".
|
|
|
|
|
|
|
|
See the /root/uClibc/test/README for additional information.
|
|
|
|
|
|
|
|
This is not needed at all for normal builds, so you can safely say no
|
|
|
|
if you do not plan to dig into your C library.
|