Config.in 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Toolchain"
  2. choice
  3. prompt "Toolchain type"
  4. help
  5. Select whether to use the toolchain provided by buildroot
  6. or an external toolchain.
  7. Some vendors provide toolchains in binary form, some in
  8. source form.
  9. config BR2_TOOLCHAIN_BUILDROOT
  10. bool "Buildroot toolchain"
  11. config BR2_TOOLCHAIN_EXTERNAL
  12. bool "External toolchain"
  13. help
  14. Select if you want to use an existing cross-compiling
  15. toolchain. Buildroot can either download automatically a
  16. toolchain, or use an already installed toolchain.
  17. config BR2_TOOLCHAIN_CTNG
  18. bool "Crosstool-NG toolchain"
  19. help
  20. Say 'y' if you want to generate the toolchain with crosstool-NG
  21. ( http://ymorin.is-a-geek.org/projects/crosstool )
  22. This is considered experimental, and you can expect some breakage.
  23. endchoice
  24. source "toolchain/toolchain-buildroot/Config.in"
  25. source "toolchain/toolchain-external/Config.in"
  26. source "toolchain/toolchain-crosstool-ng/Config.in"
  27. source "toolchain/toolchain-common.in"
  28. source "toolchain/toolchain-buildroot/Config.in.2"
  29. endmenu