2
0

Config.in 677 B

1234567891011121314151617181920212223242526272829
  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_17
  8. bool "binutils 2.17"
  9. config BINUTILS_VERSION_2_18
  10. bool "binutils 2.18"
  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.17" if BINUTILS_VERSION_2_17
  22. default "2.18" if BINUTILS_VERSION_2_18
  23. default "2.17"