blob: 8baa0c14ca558b130f46f057dcad9d27ab916ee4 [file] [log] [blame]
Bernhard Reutner-Fischer51a61c92007-09-22 14:16:25 +00001menu "Toolchain"
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +00002choice
3 prompt "Toolchain type"
Eric Andersen2d523c22004-10-09 01:06:03 +00004 help
Bernhard Reutner-Fischer4b0d5a82007-09-26 21:12:38 +00005 Select whether to use the toolchain provided by buildroot
6 or an external toolchain.
7
8 Some vendors provide toolchains in binary form, some in
9 source form.
Bernhard Reutner-Fischer7bc7c8e2007-09-25 22:03:18 +000010
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000011config BR2_TOOLCHAIN_BUILDROOT
Bernhard Reutner-Fischer51a61c92007-09-22 14:16:25 +000012 bool "Buildroot toolchain"
Peter Korsgaard02a623d2008-08-04 19:07:05 +000013
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000014config BR2_TOOLCHAIN_EXTERNAL
Peter Korsgaardecc81fe2010-02-08 11:01:04 +010015 bool "External toolchain"
Thomas Petazzoni6c492d52010-12-13 17:27:39 +010016 help
17 Select if you want to use an existing cross-compiling
18 toolchain. Buildroot can either download automatically a
19 toolchain, or use an already installed toolchain.
Bernhard Reutner-Fischer4b0d5a82007-09-26 21:12:38 +000020
Yann E. MORIN10c1eec2010-09-19 21:54:09 +020021config BR2_TOOLCHAIN_CTNG
22 bool "Crosstool-NG toolchain"
23 help
24 Say 'y' if you want to generate the toolchain with crosstool-NG
25 ( http://ymorin.is-a-geek.org/projects/crosstool )
26
27 This is considered experimental, and you can expect some breakage.
28
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000029endchoice
Eric Andersen2d523c22004-10-09 01:06:03 +000030
Yann E. MORIN2508b162010-07-28 00:08:16 +020031source "toolchain/toolchain-buildroot/Config.in"
Yann E. MORINf78ea9f2010-07-28 00:08:14 +020032source "toolchain/toolchain-external/Config.in"
Yann E. MORIN10c1eec2010-09-19 21:54:09 +020033source "toolchain/toolchain-crosstool-ng/Config.in"
Yann E. MORIN2508b162010-07-28 00:08:16 +020034source "toolchain/toolchain-common.in"
35source "toolchain/toolchain-buildroot/Config.in.2"
Peter Korsgaarde2e49502008-12-15 15:28:48 +000036
Bernhard Reutner-Fischer51a61c92007-09-22 14:16:25 +000037endmenu