Config.in 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Choose binutils version.
  2. comment "Binutils Options"
  3. choice
  4. prompt "Binutils Version"
  5. default BR2_BINUTILS_VERSION_2_19_1
  6. help
  7. Select the version of binutils you wish to use.
  8. config BR2_BINUTILS_VERSION_2_17
  9. depends on !BR2_nios2
  10. depends on BR2_DEPRECATED || (BR2_avr32 && BR2_EXT_BINUTILS_VERSION_2_17)
  11. bool "binutils 2.17"
  12. config BR2_BINUTILS_VERSION_2_17_50_0_17
  13. depends on !BR2_avr32 && !BR2_nios2
  14. depends on BR2_DEPRECATED
  15. bool "binutils 2.17.50.0.17"
  16. config BR2_BINUTILS_VERSION_2_18
  17. depends on !BR2_nios2
  18. depends on BR2_DEPRECATED || BR2_avr32
  19. depends on BR2_EXT_BINUTILS_VERSION_2_18
  20. bool "binutils 2.18"
  21. config BR2_BINUTILS_VERSION_2_18_50_0_1
  22. depends on !BR2_avr32 && !BR2_nios2
  23. depends on BR2_DEPRECATED
  24. bool "binutils 2.18.50.0.1"
  25. config BR2_BINUTILS_VERSION_2_18_50_0_3
  26. depends on !BR2_avr32 && !BR2_nios2
  27. depends on BR2_DEPRECATED
  28. bool "binutils 2.18.50.0.3"
  29. config BR2_BINUTILS_VERSION_2_18_50_0_6
  30. depends on !BR2_avr32 && !BR2_nios2
  31. depends on BR2_DEPRECATED
  32. bool "binutils 2.18.50.0.6"
  33. config BR2_BINUTILS_VERSION_2_18_50_0_8
  34. depends on !BR2_avr32 && !BR2_nios2
  35. depends on BR2_DEPRECATED
  36. bool "binutils 2.18.50.0.8"
  37. config BR2_BINUTILS_VERSION_2_18_50_0_9
  38. depends on !BR2_avr32 && !BR2_nios2
  39. depends on BR2_DEPRECATED
  40. bool "binutils 2.18.50.0.9"
  41. config BR2_BINUTILS_VERSION_2_19
  42. depends on !BR2_avr32 && !BR2_nios2
  43. depends on BR2_DEPRECATED || BR2_RECENT
  44. bool "binutils 2.19"
  45. config BR2_BINUTILS_VERSION_2_19_1
  46. depends on !BR2_avr32 && !BR2_nios2
  47. bool "binutils 2.19.1"
  48. endchoice
  49. config BR2_BINUTILS_VERSION
  50. string
  51. default "2.15" if BR2_nios2
  52. default "2.17" if BR2_BINUTILS_VERSION_2_17
  53. default "2.17.50.0.17" if BR2_BINUTILS_VERSION_2_17_50_0_17
  54. default "2.18" if BR2_BINUTILS_VERSION_2_18
  55. default "2.18.50.0.1" if BR2_BINUTILS_VERSION_2_18_50_0_1
  56. default "2.18.50.0.3" if BR2_BINUTILS_VERSION_2_18_50_0_3
  57. default "2.18.50.0.6" if BR2_BINUTILS_VERSION_2_18_50_0_6
  58. default "2.18.50.0.8" if BR2_BINUTILS_VERSION_2_18_50_0_8
  59. default "2.18.50.0.9" if BR2_BINUTILS_VERSION_2_18_50_0_9
  60. default "2.19" if BR2_BINUTILS_VERSION_2_19
  61. default "2.19.1" if BR2_BINUTILS_VERSION_2_19_1
  62. config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
  63. string "Additional binutils options"
  64. default ""
  65. help
  66. Any additional binutils options you may want to include.