Config.in.host 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. comment "Binutils Options"
  2. config BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI
  3. bool
  4. default y
  5. depends on !BR2_microblaze
  6. choice
  7. prompt "Binutils Version"
  8. default BR2_BINUTILS_VERSION_2_31_X if !BR2_arc
  9. default BR2_BINUTILS_VERSION_ARC if BR2_arc
  10. help
  11. Select the version of binutils you wish to use.
  12. config BR2_BINUTILS_VERSION_2_30_X
  13. bool "binutils 2.30"
  14. config BR2_BINUTILS_VERSION_2_31_X
  15. bool "binutils 2.31.1"
  16. config BR2_BINUTILS_VERSION_2_32_X
  17. bool "binutils 2.32"
  18. config BR2_BINUTILS_VERSION_ARC
  19. bool "binutils arc (2.31)"
  20. depends on BR2_arc
  21. endchoice
  22. config BR2_BINUTILS_VERSION
  23. string
  24. default "arc-2019.03-rc1" if BR2_BINUTILS_VERSION_ARC
  25. default "2.30" if BR2_BINUTILS_VERSION_2_30_X
  26. default "2.31.1" if BR2_BINUTILS_VERSION_2_31_X
  27. default "2.32" if BR2_BINUTILS_VERSION_2_32_X
  28. config BR2_BINUTILS_ENABLE_LTO
  29. bool
  30. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  31. string "Additional binutils options"
  32. default ""
  33. help
  34. Any additional binutils options you may want to include.