Config.in 1.0 KB

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