Config.in.host 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_32_X if !BR2_arc && !BR2_csky
  9. default BR2_BINUTILS_VERSION_ARC if BR2_arc
  10. default BR2_BINUTILS_VERSION_CSKY if BR2_csky
  11. help
  12. Select the version of binutils you wish to use.
  13. config BR2_BINUTILS_VERSION_2_31_X
  14. bool "binutils 2.31.1"
  15. depends on !BR2_csky
  16. config BR2_BINUTILS_VERSION_2_32_X
  17. bool "binutils 2.32"
  18. depends on !BR2_csky
  19. config BR2_BINUTILS_VERSION_2_33_X
  20. bool "binutils 2.33.1"
  21. depends on !BR2_csky
  22. # https://github.com/uclinux-dev/elf2flt/pull/16
  23. # https://github.com/uclinux-dev/elf2flt/issues/12
  24. depends on !BR2_BINFMT_FLAT
  25. config BR2_BINUTILS_VERSION_ARC
  26. bool "binutils arc (2.31)"
  27. depends on BR2_arc
  28. config BR2_BINUTILS_VERSION_CSKY
  29. bool "binutils csky"
  30. depends on BR2_csky
  31. endchoice
  32. config BR2_BINUTILS_VERSION
  33. string
  34. default "arc-2020.03-release" if BR2_BINUTILS_VERSION_ARC
  35. default "c66d8bbcebfddf713b2b436e1b135e6b125a55a5" if BR2_BINUTILS_VERSION_CSKY
  36. default "2.31.1" if BR2_BINUTILS_VERSION_2_31_X
  37. default "2.32" if BR2_BINUTILS_VERSION_2_32_X
  38. default "2.33.1" if BR2_BINUTILS_VERSION_2_33_X
  39. config BR2_BINUTILS_ENABLE_LTO
  40. bool
  41. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  42. string "Additional binutils options"
  43. default ""
  44. help
  45. Any additional binutils options you may want to include.