Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_18 if avr32
  5. default BINUTILS_VERSION_2_19_1
  6. help
  7. Select the version of binutils you wish to use.
  8. config BINUTILS_VERSION_2_18
  9. depends !ubicom32
  10. bool "binutils 2.18"
  11. config BINUTILS_VERSION_2_19_1
  12. depends !avr32
  13. bool "binutils 2.19.1"
  14. config BINUTILS_VERSION_2_20
  15. depends !avr32
  16. depends !ubicom32
  17. bool "binutils 2.20"
  18. config BINUTILS_VERSION_CS
  19. depends !avr32
  20. depends !ubicom32
  21. depends BROKEN
  22. bool "binutils 2.19.1+20090205 with CodeSourcery enhancements"
  23. endchoice
  24. config EXTRA_BINUTILS_CONFIG_OPTIONS
  25. string
  26. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  27. default ""
  28. help
  29. Any additional binutils options you may want to include....
  30. config BINUTILS_VERSION
  31. string
  32. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  33. default "2.18" if BINUTILS_VERSION_2_18
  34. default "2.19.1" if BINUTILS_VERSION_2_19_1
  35. default "2.20" if BINUTILS_VERSION_2_20
  36. default "2.19.1+cs" if BINUTILS_VERSION_CS
  37. default "2.18" if avr32
  38. default "2.19.1"