Config.in.host 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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_44_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_ARC
  13. bool "binutils arc (2.43)"
  14. depends on BR2_arc
  15. config BR2_BINUTILS_VERSION_2_43_X
  16. bool "binutils 2.43.1"
  17. config BR2_BINUTILS_VERSION_2_44_X
  18. bool "binutils 2.44"
  19. config BR2_BINUTILS_VERSION_2_45_X
  20. bool "binutils 2.45.1"
  21. endchoice
  22. config BR2_BINUTILS_VERSION
  23. string
  24. default "arc-2024.12-release" if BR2_BINUTILS_VERSION_ARC
  25. default "2.43.1" if BR2_BINUTILS_VERSION_2_43_X
  26. default "2.44" if BR2_BINUTILS_VERSION_2_44_X
  27. default "2.45.1" if BR2_BINUTILS_VERSION_2_45_X
  28. config BR2_BINUTILS_GPROFNG
  29. bool "gprofng support"
  30. depends on !BR2_BINUTILS_VERSION_ARC
  31. help
  32. This option enables support for gprofng, a new profiler.
  33. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  34. string "Additional binutils options"
  35. default ""
  36. help
  37. Any additional binutils options you may want to include.