Config.in 987 B

1234567891011121314151617181920212223242526272829303132333435363738
  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_19_1
  8. bool "binutils 2.19.1"
  9. config BINUTILS_VERSION_2_20_1
  10. depends !avr32
  11. depends !ubicom32
  12. bool "binutils 2.20.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.19.1" if BINUTILS_VERSION_2_19_1
  29. default "2.20.1" if BINUTILS_VERSION_2_20_1
  30. default "2.19.1+cs" if BINUTILS_VERSION_CS
  31. default "2.19.1"