Config.in 685 B

12345678910111213141516171819202122232425262728293031
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_17
  5. help
  6. Select the version of binutils you wish to use.
  7. config BINUTILS_VERSION_2_16_1
  8. bool "binutils 2.16.1"
  9. config BINUTILS_VERSION_2_17
  10. bool "binutils 2.17"
  11. endchoice
  12. config EXTRA_BINUTILS_CONFIG_OPTIONS
  13. string
  14. prompt "Additional binutils options" if TOOLCHAINOPTS
  15. default ""
  16. help
  17. Any additional binutils options you may want to include....
  18. config BINUTILS_VERSION
  19. string
  20. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  21. default "2.16.1" if BINUTILS_VERSION_2_16_1
  22. default "2.17" if BINUTILS_VERSION_2_17
  23. default "2.17"