Config.in 1.1 KB

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