Config.in 905 B

12345678910111213141516171819202122232425262728293031323334
  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. config BR2_TOOLCHAIN_CTNG
  14. bool "Crosstool-NG toolchain"
  15. help
  16. Say 'y' if you want to generate the toolchain with crosstool-NG
  17. ( http://ymorin.is-a-geek.org/projects/crosstool )
  18. This is considered experimental, and you can expect some breakage.
  19. endchoice
  20. source "toolchain/toolchain-buildroot/Config.in"
  21. source "toolchain/toolchain-external/Config.in"
  22. source "toolchain/toolchain-crosstool-ng/Config.in"
  23. source "toolchain/toolchain-common.in"
  24. source "toolchain/toolchain-buildroot/Config.in.2"
  25. source "toolchain/toolchain-external/Config.in.2"
  26. endmenu