Config.in 988 B

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