Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 if avr32
  6. default BINUTILS_VERSION_2_22
  7. help
  8. Select the version of binutils you wish to use.
  9. config BINUTILS_VERSION_2_19_1
  10. depends ubicom32
  11. bool "binutils 2.19.1"
  12. config BINUTILS_VERSION_2_20_1
  13. depends avr32
  14. bool "binutils 2.20.1"
  15. config BINUTILS_VERSION_2_21
  16. depends !ubicom32
  17. depends !avr32 || (avr32 && BROKEN)
  18. bool "binutils 2.21"
  19. config BINUTILS_VERSION_2_21_1
  20. depends !ubicom32
  21. depends !avr32 || (avr32 && BROKEN)
  22. bool "binutils 2.21.1"
  23. config BINUTILS_VERSION_2_22
  24. depends !ubicom32 || (ubicom32 && BROKEN)
  25. depends !avr32 || (avr32 && BROKEN)
  26. bool "binutils 2.22"
  27. endchoice
  28. config EXTRA_BINUTILS_CONFIG_OPTIONS
  29. string
  30. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  31. default ""
  32. help
  33. Any additional binutils options you may want to include....
  34. config BINUTILS_VERSION
  35. string
  36. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  37. default "2.19.1" if BINUTILS_VERSION_2_19_1
  38. default "2.20.1" if BINUTILS_VERSION_2_20_1
  39. default "2.21" if BINUTILS_VERSION_2_21
  40. default "2.21.1" if BINUTILS_VERSION_2_21_1
  41. default "2.22" if BINUTILS_VERSION_2_22
  42. default "2.19.1" if ubicom32
  43. default "2.20.1" if avr32
  44. default "2.22"