Config.in 743 B

12345678910111213141516171819202122232425262728293031
  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. endchoice
  14. source "toolchain/Config.in.1"
  15. source "toolchain/external-toolchain/Config.in"
  16. # we want gdb config in the middle of both source and external
  17. # toolchains, but mconf won't let us source the same file twice,
  18. # so put it here instead
  19. source "toolchain/gdb/Config.in"
  20. comment "Common Toolchain Options"
  21. source "toolchain/Config.in.2"
  22. source "toolchain/external-toolchain/Config.in.2"
  23. endmenu