Config.in.host 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 && !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_30_X
  14. bool "binutils 2.30"
  15. depends on !BR2_csky
  16. config BR2_BINUTILS_VERSION_2_31_X
  17. bool "binutils 2.31.1"
  18. depends on !BR2_csky
  19. config BR2_BINUTILS_VERSION_2_32_X
  20. bool "binutils 2.32"
  21. depends on !BR2_csky
  22. config BR2_BINUTILS_VERSION_ARC
  23. bool "binutils arc (2.31)"
  24. depends on BR2_arc
  25. config BR2_BINUTILS_VERSION_CSKY
  26. bool "binutils csky"
  27. depends on BR2_csky
  28. endchoice
  29. config BR2_BINUTILS_VERSION
  30. string
  31. default "arc-2019.03-rc1" if BR2_BINUTILS_VERSION_ARC
  32. default "c66d8bbcebfddf713b2b436e1b135e6b125a55a5" if BR2_BINUTILS_VERSION_CSKY
  33. default "2.30" if BR2_BINUTILS_VERSION_2_30_X
  34. default "2.31.1" if BR2_BINUTILS_VERSION_2_31_X
  35. default "2.32" if BR2_BINUTILS_VERSION_2_32_X
  36. config BR2_BINUTILS_ENABLE_LTO
  37. bool
  38. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  39. string "Additional binutils options"
  40. default ""
  41. help
  42. Any additional binutils options you may want to include.