Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_20_1 if avr32
  5. default BINUTILS_VERSION_2_22 if !avr32
  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 avr32
  12. bool "binutils 2.20.1"
  13. config BINUTILS_VERSION_2_21_1
  14. depends !avr32 || (avr32 && BROKEN)
  15. bool "binutils 2.21.1"
  16. config BINUTILS_VERSION_2_22
  17. depends !avr32 || (avr32 && BROKEN)
  18. bool "binutils 2.22"
  19. config BINUTILS_VERSION_2_23_1
  20. depends !avr32 || (avr32 && BROKEN)
  21. bool "binutils 2.23.1"
  22. endchoice
  23. config EXTRA_BINUTILS_CONFIG_OPTIONS
  24. string
  25. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  26. default ""
  27. help
  28. Any additional binutils options you may want to include....
  29. config BINUTILS_VERSION
  30. string
  31. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  32. default "2.19.1" if BINUTILS_VERSION_2_19_1
  33. default "2.20.1" if BINUTILS_VERSION_2_20_1
  34. default "2.21.1" if BINUTILS_VERSION_2_21_1
  35. default "2.22" if BINUTILS_VERSION_2_22
  36. default "2.23.1" if BINUTILS_VERSION_2_23_1
  37. default "2.20.1" if avr32
  38. default "2.22"