Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. bool "binutils 2.20"
  30. config BR2_BINUTILS_VERSION_2_20_1
  31. depends on !BR2_avr32
  32. bool "binutils 2.20.1"
  33. endchoice
  34. config BR2_BINUTILS_VERSION
  35. string
  36. default "2.17" if BR2_BINUTILS_VERSION_2_17
  37. default "2.18" if BR2_BINUTILS_VERSION_2_18
  38. default "2.18-avr32-1.0.1" if BR2_BINUTILS_VERSION_2_18_AVR32_1_0_1
  39. default "2.19" if BR2_BINUTILS_VERSION_2_19
  40. default "2.19.1" if BR2_BINUTILS_VERSION_2_19_1
  41. default "2.20" if BR2_BINUTILS_VERSION_2_20
  42. default "2.20.1" if BR2_BINUTILS_VERSION_2_20_1
  43. config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
  44. string "Additional binutils options"
  45. default ""
  46. help
  47. Any additional binutils options you may want to include.