fix prerequisites due to libc changes
[buildroot.git] / toolchain / Config.in
blobccea8c5e716a14989273ead03859c743898d089a
1 menu "Toolchain"
2 choice
3         prompt "Toolchain type"
4         default BR2_TOOLCHAIN_BUILDROOT if !BR2_avr32
5         default BR2_TOOLCHAIN_EXTERNAL_SOURCE if BR2_avr32
6         help
7           Select whether to use the toolchain provided by buildroot
8           or an external toolchain.
10           Some vendors provide toolchains in binary form, some in
11           source form.
13 config BR2_TOOLCHAIN_BUILDROOT
14         bool "Buildroot toolchain"
15         depends on !BR2_avr32
17 config BR2_TOOLCHAIN_EXTERNAL
18         bool "External binary toolchain"
20 config BR2_TOOLCHAIN_EXTERNAL_SOURCE
21         bool "External source toolchain"
22 endchoice
24 config BR2_TOOLCHAIN_SOURCE
25         bool
26         default y if BR2_TOOLCHAIN_BUILDROOT || BR2_TOOLCHAIN_EXTERNAL_SOURCE
27         default n if BR2_TOOLCHAIN_EXTERNAL
29 source "target/device/Config.in.toolchain"
31 source "toolchain/Config.in.2"
32 source "toolchain/external-toolchain/Config.in"
34 endmenu