Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. depends on !BR2_microblaze && !BR2_aarch64
  12. select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
  13. config BR2_TOOLCHAIN_EXTERNAL
  14. bool "External toolchain"
  15. help
  16. Select if you want to use an existing cross-compiling
  17. toolchain. Buildroot can either download automatically a
  18. toolchain, or use an already installed toolchain.
  19. config BR2_TOOLCHAIN_CTNG
  20. bool "Crosstool-NG toolchain"
  21. depends on !BR2_microblaze && !BR2_aarch64 && !BR2_xtensa
  22. select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
  23. help
  24. Say 'y' if you want to generate the toolchain with crosstool-NG
  25. (http://crosstool-ng.org).
  26. This is considered experimental, and you can expect some breakage.
  27. endchoice
  28. source "toolchain/toolchain-buildroot/Config.in"
  29. source "toolchain/toolchain-external/Config.in"
  30. source "toolchain/toolchain-crosstool-ng/Config.in"
  31. source "toolchain/toolchain-common.in"
  32. source "toolchain/toolchain-buildroot/Config.in.2"
  33. endmenu