Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Choose binutils version.
  2. comment "Binutils Options"
  3. choice
  4. prompt "Binutils Version"
  5. default BR2_BINUTILS_VERSION_2_20
  6. help
  7. Select the version of binutils you wish to use.
  8. config BR2_BINUTILS_VERSION_2_17
  9. depends on !BR2_nios2 && !BR2_avr32
  10. depends on BR2_DEPRECATED
  11. bool "binutils 2.17"
  12. config BR2_BINUTILS_VERSION_2_18
  13. depends on !BR2_nios2 && !BR2_avr32
  14. depends on BR2_DEPRECATED
  15. bool "binutils 2.18"
  16. config BR2_BINUTILS_VERSION_2_18_50_0_9
  17. depends on !BR2_avr32 && !BR2_nios2
  18. depends on BR2_DEPRECATED
  19. bool "binutils 2.18.50.0.9"
  20. config BR2_BINUTILS_VERSION_2_18_AVR32_1_0_1
  21. depends on BR2_avr32
  22. bool "binutils 2.18-avr32-1.0.1"
  23. config BR2_BINUTILS_VERSION_2_19
  24. depends on !BR2_avr32 && !BR2_nios2
  25. depends on BR2_DEPRECATED
  26. bool "binutils 2.19"
  27. config BR2_BINUTILS_VERSION_2_19_1
  28. depends on !BR2_avr32 && !BR2_nios2
  29. depends on BR2_DEPRECATED || BR2_RECENT
  30. bool "binutils 2.19.1"
  31. config BR2_BINUTILS_VERSION_2_20
  32. depends on !BR2_avr32 && !BR2_nios2
  33. bool "binutils 2.20"
  34. endchoice
  35. config BR2_BINUTILS_VERSION
  36. string
  37. default "2.15" if BR2_nios2
  38. default "2.17" if BR2_BINUTILS_VERSION_2_17
  39. default "2.18" if BR2_BINUTILS_VERSION_2_18
  40. default "2.18.50.0.9" if BR2_BINUTILS_VERSION_2_18_50_0_9
  41. default "2.18-avr32-1.0.1" if BR2_BINUTILS_VERSION_2_18_AVR32_1_0_1
  42. default "2.19" if BR2_BINUTILS_VERSION_2_19
  43. default "2.19.1" if BR2_BINUTILS_VERSION_2_19_1
  44. default "2.20" if BR2_BINUTILS_VERSION_2_20
  45. config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
  46. string "Additional binutils options"
  47. default ""
  48. help
  49. Any additional binutils options you may want to include.