Config.in 1.5 KB

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