Config.in 971 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_19_1 if 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 !ubicom32
  12. bool "binutils 2.20.1"
  13. config BINUTILS_VERSION_2_21
  14. depends !ubicom32
  15. depends !avr32 || (avr32 && BROKEN)
  16. bool "binutils 2.21"
  17. endchoice
  18. config EXTRA_BINUTILS_CONFIG_OPTIONS
  19. string
  20. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  21. default ""
  22. help
  23. Any additional binutils options you may want to include....
  24. config BINUTILS_VERSION
  25. string
  26. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  27. default "2.19.1" if BINUTILS_VERSION_2_19_1
  28. default "2.20.1" if BINUTILS_VERSION_2_20_1
  29. default "2.21" if BINUTILS_VERSION_2_21
  30. default "2.19.1" if ubicom32
  31. default "2.20.1"