Config.in 791 B

1234567891011121314151617181920212223242526272829303132333435
  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. config BINUTILS_VERSION_2_18
  12. bool "binutils 2.18"
  13. endchoice
  14. config EXTRA_BINUTILS_CONFIG_OPTIONS
  15. string
  16. prompt "Additional binutils options" if TOOLCHAINOPTS
  17. default ""
  18. help
  19. Any additional binutils options you may want to include....
  20. config BINUTILS_VERSION
  21. string
  22. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  23. default "2.16.1" if BINUTILS_VERSION_2_16_1
  24. default "2.17" if BINUTILS_VERSION_2_17
  25. default "2.18" if BINUTILS_VERSION_2_18
  26. default "2.17"