Config.in.host 980 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. comment "Binutils Options"
  2. choice
  3. prompt "Binutils Version"
  4. default BR2_BINUTILS_VERSION_2_28_X
  5. depends on !BR2_arc
  6. help
  7. Select the version of binutils you wish to use.
  8. config BR2_BINUTILS_VERSION_2_26_X
  9. bool "binutils 2.26.1"
  10. config BR2_BINUTILS_VERSION_2_27_X
  11. bool "binutils 2.27"
  12. # binutils 2.27 triggers a bug in elf2flt on ARM/noMMU
  13. depends on !(BR2_arm && !BR2_USE_MMU)
  14. config BR2_BINUTILS_VERSION_2_28_X
  15. bool "binutils 2.28.1"
  16. config BR2_BINUTILS_VERSION_2_29_X
  17. bool "binutils 2.29"
  18. endchoice
  19. config BR2_BINUTILS_VERSION
  20. string
  21. default "arc-2017.03" if BR2_arc
  22. default "2.26.1" if BR2_BINUTILS_VERSION_2_26_X
  23. default "2.27" if BR2_BINUTILS_VERSION_2_27_X
  24. default "2.28.1" if BR2_BINUTILS_VERSION_2_28_X
  25. default "2.29" if BR2_BINUTILS_VERSION_2_29_X
  26. config BR2_BINUTILS_ENABLE_LTO
  27. bool
  28. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  29. string "Additional binutils options"
  30. default ""
  31. help
  32. Any additional binutils options you may want to include.