Config.in.host 852 B

12345678910111213141516171819202122232425262728293031323334353637
  1. comment "Binutils Options"
  2. choice
  3. prompt "Binutils Version"
  4. depends on !BR2_arc
  5. default BR2_BINUTILS_VERSION_2_26_X
  6. help
  7. Select the version of binutils you wish to use.
  8. config BR2_BINUTILS_VERSION_2_25_X
  9. bool "binutils 2.25.1"
  10. # supported but broken on Blackfin
  11. depends on !BR2_bfin
  12. config BR2_BINUTILS_VERSION_2_26_X
  13. bool "binutils 2.26.1"
  14. config BR2_BINUTILS_VERSION_2_27_X
  15. bool "binutils 2.27"
  16. endchoice
  17. config BR2_BINUTILS_VERSION
  18. string
  19. default "arc-2016.09-eng015" if BR2_arc
  20. default "2.25.1" if BR2_BINUTILS_VERSION_2_25_X
  21. default "2.26.1" if BR2_BINUTILS_VERSION_2_26_X
  22. default "2.27" if BR2_BINUTILS_VERSION_2_27_X
  23. config BR2_BINUTILS_ENABLE_LTO
  24. bool
  25. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  26. string "Additional binutils options"
  27. default ""
  28. help
  29. Any additional binutils options you may want to include.