Config.in.host 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. comment "Binutils Options"
  2. choice
  3. prompt "Binutils Version"
  4. default BR2_BINUTILS_VERSION_2_27_X
  5. default BR2_BINUTILS_VERSION_2_28_X if (BR2_arm && !BR2_USE_MMU)
  6. depends on !BR2_arc
  7. help
  8. Select the version of binutils you wish to use.
  9. config BR2_BINUTILS_VERSION_2_26_X
  10. bool "binutils 2.26.1"
  11. config BR2_BINUTILS_VERSION_2_27_X
  12. bool "binutils 2.27"
  13. # binutils 2.27 triggers a bug in elf2flt on ARM/noMMU
  14. depends on !(BR2_arm && !BR2_USE_MMU)
  15. config BR2_BINUTILS_VERSION_2_28_X
  16. bool "binutils 2.28.1"
  17. config BR2_BINUTILS_VERSION_2_29_X
  18. bool "binutils 2.29"
  19. endchoice
  20. config BR2_BINUTILS_VERSION
  21. string
  22. default "arc-2017.03" if BR2_arc
  23. default "2.26.1" if BR2_BINUTILS_VERSION_2_26_X
  24. default "2.27" if BR2_BINUTILS_VERSION_2_27_X
  25. default "2.28.1" if BR2_BINUTILS_VERSION_2_28_X
  26. default "2.29" if BR2_BINUTILS_VERSION_2_29_X
  27. config BR2_BINUTILS_ENABLE_LTO
  28. bool
  29. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  30. string "Additional binutils options"
  31. default ""
  32. help
  33. Any additional binutils options you may want to include.