]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - toolchain/Config.in
toolchain: revert r25193 (Change binary toolchain configuration)
[coffee/buildroot.git] / toolchain / Config.in
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.
9
10           Some vendors provide toolchains in binary form, some in
11           source form.
12
13 config BR2_TOOLCHAIN_BUILDROOT
14         bool "Buildroot toolchain"
15         depends on !BR2_avr32
16
17 config BR2_TOOLCHAIN_EXTERNAL
18         bool "External binary toolchain"
19
20 config BR2_TOOLCHAIN_EXTERNAL_SOURCE
21         bool "External source toolchain"
22 endchoice
23
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
28
29 source "target/device/Config.in.toolchain"
30
31 source "toolchain/Config.in.1"
32 source "toolchain/external-toolchain/Config.in"
33
34 # we want gdb config in the middle of both source and external
35 # toolchains, but mconf won't let us source the same file twice,
36 # so put it here instead
37 source "toolchain/gdb/Config.in"
38 comment "Common Toolchain Options"
39
40 source "toolchain/Config.in.2"
41 source "toolchain/external-toolchain/Config.in.2"
42
43 endmenu