Config.in.host 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. comment "Binutils Options"
  2. choice
  3. prompt "Binutils Version"
  4. depends on !BR2_arc
  5. default BR2_BINUTILS_VERSION_2_26_X
  6. help
  7. Select the version of binutils you wish to use.
  8. config BR2_BINUTILS_VERSION_2_24_X
  9. depends on BR2_DEPRECATED_SINCE_2016_11
  10. # supported, but broken on Nios-II, Blackfin and powerpc64le
  11. depends on !BR2_nios2 && !BR2_powerpc64le && !BR2_bfin
  12. # Unsupported for MIPS R6
  13. depends on !BR2_MIPS_CPU_MIPS32R6 && !BR2_MIPS_CPU_MIPS64R6
  14. # Unsupported ARM cores
  15. depends on !BR2_cortex_a17
  16. bool "binutils 2.24"
  17. config BR2_BINUTILS_VERSION_2_25_X
  18. bool "binutils 2.25.1"
  19. # supported but broken on Blackfin
  20. depends on !BR2_bfin
  21. config BR2_BINUTILS_VERSION_2_26_X
  22. bool "binutils 2.26.1"
  23. config BR2_BINUTILS_VERSION_2_27_X
  24. bool "binutils 2.27"
  25. endchoice
  26. config BR2_BINUTILS_VERSION
  27. string
  28. default "arc-2016.09-eng015" if BR2_arc
  29. default "2.24" if BR2_BINUTILS_VERSION_2_24_X
  30. default "2.25.1" if BR2_BINUTILS_VERSION_2_25_X
  31. default "2.26.1" if BR2_BINUTILS_VERSION_2_26_X
  32. default "2.27" if BR2_BINUTILS_VERSION_2_27_X
  33. config BR2_BINUTILS_ENABLE_LTO
  34. bool
  35. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  36. string "Additional binutils options"
  37. default ""
  38. help
  39. Any additional binutils options you may want to include.