2007-09-22 16:16:25 +02:00
|
|
|
menu "Toolchain"
|
2007-02-06 19:19:38 +01:00
|
|
|
choice
|
|
|
|
prompt "Toolchain type"
|
2005-08-04 05:49:25 +02:00
|
|
|
help
|
2007-09-26 23:12:38 +02: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-26 00:03:18 +02:00
|
|
|
|
2007-02-06 19:19:38 +01:00
|
|
|
config BR2_TOOLCHAIN_BUILDROOT
|
2007-09-22 16:16:25 +02:00
|
|
|
bool "Buildroot toolchain"
|
2012-10-28 17:40:33 +01:00
|
|
|
depends on !BR2_microblaze && !BR2_aarch64
|
2011-05-30 23:56:57 +02:00
|
|
|
select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
|
2011-11-24 14:26:52 +01:00
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED
|
2008-08-04 21:07:05 +02:00
|
|
|
|
2007-02-06 19:19:38 +01: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 23:12:38 +02:00
|
|
|
|
2010-09-19 21:54:09 +02:00
|
|
|
config BR2_TOOLCHAIN_CTNG
|
|
|
|
bool "Crosstool-NG toolchain"
|
2012-11-15 04:53:51 +01:00
|
|
|
depends on !BR2_microblaze && !BR2_aarch64 && !BR2_xtensa
|
2011-05-30 23:56:57 +02:00
|
|
|
select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
|
2011-11-24 14:26:52 +01:00
|
|
|
select BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED
|
2010-09-19 21:54:09 +02:00
|
|
|
help
|
|
|
|
Say 'y' if you want to generate the toolchain with crosstool-NG
|
|
|
|
( http://ymorin.is-a-geek.org/projects/crosstool )
|
|
|
|
|
|
|
|
This is considered experimental, and you can expect some breakage.
|
|
|
|
|
2007-02-06 19:19:38 +01:00
|
|
|
endchoice
|
2004-10-09 03:06:03 +02: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-09-19 21:54:09 +02:00
|
|
|
source "toolchain/toolchain-crosstool-ng/Config.in"
|
2010-07-28 00:08:16 +02:00
|
|
|
source "toolchain/toolchain-common.in"
|
|
|
|
source "toolchain/toolchain-buildroot/Config.in.2"
|
2008-12-15 16:28:48 +01:00
|
|
|
|
2007-09-22 16:16:25 +02:00
|
|
|
endmenu
|