Config.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Choose binutils version.
  2. comment "Binutils Options"
  3. choice
  4. prompt "Binutils Version"
  5. default BR2_BINUTILS_VERSION_2_18
  6. help
  7. Select the version of binutils you wish to use.
  8. config BR2_BINUTILS_VERSION_2_17
  9. depends BR2_avr32 || !BR2_nios2 && BR2_DEPRECATED
  10. depends BR2_EXT_BINUTILS_VERSION_2_17
  11. bool "binutils 2.17"
  12. config BR2_BINUTILS_VERSION_2_17_50_0_17
  13. depends !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
  14. bool "binutils 2.17.50.0.17"
  15. config BR2_BINUTILS_VERSION_2_18
  16. depends !BR2_avr32 && !BR2_nios2
  17. bool "binutils 2.18"
  18. config BR2_BINUTILS_VERSION_2_18_50_0_1
  19. depends !BR2_avr32 && !BR2_nios2
  20. bool "binutils 2.18.50.0.1"
  21. endchoice
  22. config BR2_BINUTILS_VERSION
  23. string
  24. default "2.15" if BR2_nios2
  25. default "2.17" if BR2_BINUTILS_VERSION_2_17
  26. default "2.17.50.0.17" if BR2_BINUTILS_VERSION_2_17_50_0_17
  27. default "2.18" if BR2_BINUTILS_VERSION_2_18
  28. default "2.18.50.0.1" if BR2_BINUTILS_VERSION_2_18_50_0_1
  29. config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS
  30. string "Additional binutils options"
  31. default ""
  32. help
  33. Any additional binutils options you may want to include.