Config.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. config BINUTILS_VERSION_2_21_1
  18. depends !ubicom32
  19. depends !avr32 || (avr32 && BROKEN)
  20. bool "binutils 2.21.1"
  21. endchoice
  22. config EXTRA_BINUTILS_CONFIG_OPTIONS
  23. string
  24. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  25. default ""
  26. help
  27. Any additional binutils options you may want to include....
  28. config BINUTILS_VERSION
  29. string
  30. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  31. default "2.19.1" if BINUTILS_VERSION_2_19_1
  32. default "2.20.1" if BINUTILS_VERSION_2_20_1
  33. default "2.21" if BINUTILS_VERSION_2_21
  34. default "2.21.1" if BINUTILS_VERSION_2_21_1
  35. default "2.19.1" if ubicom32
  36. default "2.20.1"