Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_LINARO if !avr32
  6. help
  7. Select the version of binutils you wish to use.
  8. config BINUTILS_VERSION_2_20_1
  9. depends on avr32
  10. bool "binutils 2.20.1"
  11. config BINUTILS_VERSION_2_22
  12. depends on !avr32 || (avr32 && BROKEN)
  13. bool "binutils 2.22"
  14. config BINUTILS_VERSION_2_23_1
  15. depends on !avr32 || (avr32 && BROKEN)
  16. bool "binutils 2.23.1"
  17. config BINUTILS_VERSION_LINARO
  18. depends on !avr32 || (avr32 && BROKEN)
  19. bool "Linaro binutils 2.24"
  20. endchoice
  21. config EXTRA_BINUTILS_CONFIG_OPTIONS
  22. string
  23. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  24. default ""
  25. help
  26. Any additional binutils options you may want to include....
  27. config BINUTILS_VERSION
  28. string
  29. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  30. default "2.20.1" if BINUTILS_VERSION_2_20_1
  31. default "2.22" if BINUTILS_VERSION_2_22
  32. default "2.23.1" if BINUTILS_VERSION_2_23_1
  33. default "linaro" if BINUTILS_VERSION_LINARO
  34. default "2.20.1" if avr32
  35. default "2.22"