Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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_2_20_1
  17. depends !avr32
  18. depends !ubicom32
  19. bool "binutils 2.20.1"
  20. config BINUTILS_VERSION_CS
  21. depends !avr32
  22. depends !ubicom32
  23. depends BROKEN
  24. bool "binutils 2.19.1+20090205 with CodeSourcery enhancements"
  25. endchoice
  26. config EXTRA_BINUTILS_CONFIG_OPTIONS
  27. string
  28. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  29. default ""
  30. help
  31. Any additional binutils options you may want to include....
  32. config BINUTILS_VERSION
  33. string
  34. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  35. default "2.18" if BINUTILS_VERSION_2_18
  36. default "2.19.1" if BINUTILS_VERSION_2_19_1
  37. default "2.20" if BINUTILS_VERSION_2_20
  38. default "2.20.1" if BINUTILS_VERSION_2_20_1
  39. default "2.19.1+cs" if BINUTILS_VERSION_CS
  40. default "2.19.1"