Config.in 1.1 KB

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