Config.in.host 1.4 KB

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