2007-09-22 14:16:25 +00:00
|
|
|
menu "Toolchain"
|
2013-06-30 21:29:09 +02:00
|
|
|
|
2014-04-07 11:56:48 +02:00
|
|
|
# Invisible option that makes sure the toolchain package always gets
|
|
|
|
|
# built
|
|
|
|
|
config BR2_TOOLCHAIN
|
|
|
|
|
bool
|
|
|
|
|
default y
|
|
|
|
|
|
2013-06-30 21:29:09 +02:00
|
|
|
# Should be selected for glibc or eglibc
|
|
|
|
|
config BR2_TOOLCHAIN_USES_GLIBC
|
|
|
|
|
bool
|
|
|
|
|
select BR2_USE_WCHAR
|
|
|
|
|
select BR2_ENABLE_LOCALE
|
|
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
|
2014-02-18 22:08:59 +01:00
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
2013-06-30 21:29:09 +02:00
|
|
|
select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
|
2013-09-02 18:06:36 +02:00
|
|
|
select BR2_TOOLCHAIN_HAS_SSP
|
2013-06-30 21:29:09 +02:00
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_USES_UCLIBC
|
|
|
|
|
bool
|
|
|
|
|
|
2013-10-08 20:17:09 +02:00
|
|
|
config BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
|
bool
|
|
|
|
|
select BR2_USE_WCHAR
|
|
|
|
|
select BR2_ENABLE_LOCALE
|
|
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
|
2014-02-18 22:08:59 +01:00
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
2015-10-17 15:09:08 +02:00
|
|
|
select BR2_TOOLCHAIN_HAS_SSP
|
2013-10-08 20:17:09 +02:00
|
|
|
|
2007-02-06 18:19:38 +00:00
|
|
|
choice
|
|
|
|
|
prompt "Toolchain type"
|
2005-08-04 03:49:25 +00:00
|
|
|
help
|
2007-09-26 21:12:38 +00:00
|
|
|
Select whether to use the toolchain provided by buildroot
|
|
|
|
|
or an external toolchain.
|
|
|
|
|
|
|
|
|
|
Some vendors provide toolchains in binary form, some in
|
|
|
|
|
source form.
|
2007-09-25 22:03:18 +00:00
|
|
|
|
2007-02-06 18:19:38 +00:00
|
|
|
config BR2_TOOLCHAIN_BUILDROOT
|
2007-09-22 14:16:25 +00:00
|
|
|
bool "Buildroot toolchain"
|
2015-03-17 13:41:00 -03:00
|
|
|
depends on !BR2_bfin
|
2011-05-30 23:56:57 +02:00
|
|
|
select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
|
2008-08-04 19:07:05 +00:00
|
|
|
|
2007-02-06 18:19:38 +00:00
|
|
|
config BR2_TOOLCHAIN_EXTERNAL
|
2010-02-08 11:01:04 +01:00
|
|
|
bool "External toolchain"
|
2010-12-13 17:27:39 +01:00
|
|
|
help
|
|
|
|
|
Select if you want to use an existing cross-compiling
|
|
|
|
|
toolchain. Buildroot can either download automatically a
|
|
|
|
|
toolchain, or use an already installed toolchain.
|
2007-09-26 21:12:38 +00:00
|
|
|
|
2007-02-06 18:19:38 +00:00
|
|
|
endchoice
|
2004-10-09 01:06:03 +00:00
|
|
|
|
2010-07-28 00:08:16 +02:00
|
|
|
source "toolchain/toolchain-buildroot/Config.in"
|
2010-07-28 00:08:14 +02:00
|
|
|
source "toolchain/toolchain-external/Config.in"
|
2010-07-28 00:08:16 +02:00
|
|
|
source "toolchain/toolchain-common.in"
|
2008-12-15 15:28:48 +00:00
|
|
|
|
2007-09-22 14:16:25 +00:00
|
|
|
endmenu
|