2010-09-19 21:54:09 +02:00
|
|
|
# Selection options for crosstool-NG
|
|
|
|
|
|
|
|
if BR2_TOOLCHAIN_CTNG
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Crosstool-NG C library"
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_uClibc
|
|
|
|
bool "uClibc"
|
|
|
|
|
|
|
|
# Although eglibc can be configured to opt-out some features,
|
|
|
|
# let's not deal with that for the time being, it's complex...
|
|
|
|
config BR2_TOOLCHAIN_CTNG_eglibc
|
|
|
|
bool "eglibc"
|
|
|
|
select BR2_LARGEFILE
|
|
|
|
select BR2_INET_IPV6
|
|
|
|
select BR2_INET_RPC
|
|
|
|
select BR2_ENABLE_LOCALE
|
|
|
|
select BR2_USE_WCHAR
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_glibc
|
|
|
|
bool "glibc"
|
|
|
|
select BR2_LARGEFILE
|
|
|
|
select BR2_INET_IPV6
|
|
|
|
select BR2_INET_RPC
|
|
|
|
select BR2_ENABLE_LOCALE
|
|
|
|
select BR2_USE_WCHAR
|
|
|
|
|
|
|
|
endchoice # C library
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_LIBC
|
|
|
|
string
|
|
|
|
default "uClibc" if BR2_TOOLCHAIN_CTNG_uClibc
|
|
|
|
default "eglibc" if BR2_TOOLCHAIN_CTNG_eglibc
|
|
|
|
default "glibc" if BR2_TOOLCHAIN_CTNG_glibc
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_CONFIG
|
|
|
|
string "crosstool-NG configuration file to use"
|
2011-05-22 00:05:40 +02:00
|
|
|
default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-uClibc" if BR2_TOOLCHAIN_CTNG_uClibc
|
|
|
|
default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-eglibc" if BR2_TOOLCHAIN_CTNG_eglibc
|
|
|
|
default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-glibc" if BR2_TOOLCHAIN_CTNG_glibc
|
2010-09-19 21:54:09 +02:00
|
|
|
help
|
|
|
|
Enter here the crosstool-NG's .config file to use.
|
2011-05-22 00:05:40 +02:00
|
|
|
To fine-tune your toolchain, you can also call:
|
|
|
|
make ctng-menuconfig
|
|
|
|
|
|
|
|
If unsure, keep the default value.
|
2010-09-19 21:54:09 +02:00
|
|
|
|
toolchain: Improve C library option selection
Turn BR2_LARGEFILE, BR2_INET_IPV6, BR2_INET_RPC, BR2_USE_WCHAR,
BR2_ENABLE_LOCALE and BR2_PROGRAM_INVOCATION into hidden options.
Then, for Buildroot toolchains, external toolchains and Crosstool-NG
toolchains, provide visible options that selects the hidden options.
This allows :
* To show a different label and help text in the case of Buildroot
toolchain (do you want to enable feature X ?) and in the case of
external toolchain (is feature X available in your toolchain ?)
* To not show any option when a glibc external toolchain is selected
(since glibc is assumed to support all of largefile, IPv6, RPC,
WCHAR, locale and program invocation) and have them all selected in
that case.
There is some amount of duplication between Buildroot toolchain config
options and Crosstool-NG toolchain config options, because kconfig
doesn't allow to source the same Config.in file twice (even if under
mutually exclusive conditions). This duplication is more readable that
the hack that consists in splitting files in multiple pieces.
However, this commit changes the name of the options visible in the
configuration interface, so existing .config files will have to be
updated accordingly.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-12-13 17:27:37 +01:00
|
|
|
if BR2_TOOLCHAIN_CTNG_uClibc
|
|
|
|
|
|
|
|
comment "Toolchain Options"
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_uClibc_LARGEFILE
|
|
|
|
bool "Enable large file (files > 2 GB) support"
|
|
|
|
select BR2_LARGEFILE
|
|
|
|
help
|
|
|
|
Enable this option if you want your toolchain to support
|
|
|
|
files bigger than 2 GB.
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_uClibc_INET_IPV6
|
|
|
|
bool "Enable IPv6 support"
|
|
|
|
select BR2_INET_IPV6
|
|
|
|
help
|
|
|
|
Enable this option if you want your toolchain to support
|
|
|
|
IPv6.
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_uClibc_INET_RPC
|
|
|
|
bool "Enable RPC support"
|
|
|
|
select BR2_INET_RPC
|
|
|
|
help
|
|
|
|
Enable this option if you want your toolchain to support
|
|
|
|
RPC (needed for NFS, for example).
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_uClibc_WCHAR
|
|
|
|
bool "Enable WCHAR support"
|
|
|
|
select BR2_USE_WCHAR
|
|
|
|
help
|
|
|
|
Enable this option if you want your toolchain to support
|
|
|
|
wide characters (i.e characters longer than 8 bits, needed
|
|
|
|
for locale support).
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_uClibc_LOCALE
|
|
|
|
bool "Enable toolchain locale/i18n support"
|
|
|
|
select BR2_TOOLCHAIN_CTNG_uClibc_WCHAR
|
|
|
|
select BR2_ENABLE_LOCALE
|
|
|
|
help
|
|
|
|
Enable this option if you want your toolchain to support
|
|
|
|
localization and internationalization.
|
|
|
|
|
|
|
|
endif # BR2_TOOLCHAIN_CTNG_uClibc
|
|
|
|
|
2010-12-13 17:27:41 +01:00
|
|
|
config BR2_TOOLCHAIN_CTNG_CXX
|
|
|
|
bool "Enable C++ support"
|
|
|
|
select BR2_INSTALL_LIBSTDCPP
|
|
|
|
help
|
|
|
|
Enable this option if you want your toolchain to support the
|
|
|
|
C++ language and you want C++ libraries to be installed on
|
|
|
|
your target system.
|
|
|
|
|
2010-12-13 17:27:48 +01:00
|
|
|
choice
|
|
|
|
prompt "Thread library implementation"
|
2012-05-09 11:17:07 +02:00
|
|
|
default BR2_TOOLCHAIN_CTNG_THREADS_NPTL
|
2010-12-13 17:27:48 +01:00
|
|
|
help
|
|
|
|
Enable thread support and select thread implementation. With
|
|
|
|
glibc, thread support is mandatory but several
|
|
|
|
implementations are available. With uClibc, thread support
|
|
|
|
is optional, and when enabled, several implementations are
|
|
|
|
available. However, not all thread variants work with all
|
|
|
|
versions of uClibc for all architectures, the "linuxthreads
|
|
|
|
(stable/old)" may be a working fallback.
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_THREADS_NONE
|
|
|
|
bool "none"
|
|
|
|
depends on BR2_TOOLCHAIN_CTNG_uClibc
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_THREADS_PTHREADS
|
|
|
|
bool "linuxthreads"
|
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_THREADS_PTHREADS_OLD
|
|
|
|
bool "linuxthreads (stable/old)"
|
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
depends on BR2_TOOLCHAIN_CTNG_uClibc
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_CTNG_THREADS_NPTL
|
|
|
|
bool "Native POSIX Threading (NPTL)"
|
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
endchoice
|
|
|
|
|
2010-09-19 21:54:09 +02:00
|
|
|
endif # BR2_TOOLCHAIN_CTNG
|