Config.in.host 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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_34_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_32_X
  14. bool "binutils 2.32"
  15. depends on !BR2_csky
  16. config BR2_BINUTILS_VERSION_2_33_X
  17. bool "binutils 2.33.1"
  18. depends on !BR2_csky
  19. # https://github.com/uclinux-dev/elf2flt/pull/16
  20. # https://github.com/uclinux-dev/elf2flt/issues/12
  21. depends on !BR2_BINFMT_FLAT
  22. config BR2_BINUTILS_VERSION_2_34_X
  23. bool "binutils 2.34"
  24. depends on !BR2_csky
  25. # https://github.com/uclinux-dev/elf2flt/pull/16
  26. # https://github.com/uclinux-dev/elf2flt/issues/12
  27. depends on !BR2_BINFMT_FLAT
  28. config BR2_BINUTILS_VERSION_2_35_X
  29. bool "binutils 2.35.1"
  30. depends on !BR2_csky
  31. # https://github.com/uclinux-dev/elf2flt/pull/16
  32. # https://github.com/uclinux-dev/elf2flt/issues/12
  33. depends on !BR2_BINFMT_FLAT
  34. config BR2_BINUTILS_VERSION_ARC
  35. bool "binutils arc (2.34.50)"
  36. depends on BR2_arc
  37. config BR2_BINUTILS_VERSION_CSKY
  38. bool "binutils csky"
  39. depends on BR2_csky
  40. endchoice
  41. config BR2_BINUTILS_VERSION
  42. string
  43. default "arc-2020.09-release" if BR2_BINUTILS_VERSION_ARC
  44. default "c66d8bbcebfddf713b2b436e1b135e6b125a55a5" if BR2_BINUTILS_VERSION_CSKY
  45. default "2.32" if BR2_BINUTILS_VERSION_2_32_X
  46. default "2.33.1" if BR2_BINUTILS_VERSION_2_33_X
  47. default "2.34" if BR2_BINUTILS_VERSION_2_34_X
  48. default "2.35.1" if BR2_BINUTILS_VERSION_2_35_X
  49. config BR2_BINUTILS_ENABLE_LTO
  50. bool
  51. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  52. string "Additional binutils options"
  53. default ""
  54. help
  55. Any additional binutils options you may want to include.