Config.in.host 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. comment "Binutils Options"
  2. choice
  3. prompt "Binutils Version"
  4. depends on !BR2_arc
  5. default BR2_BINUTILS_VERSION_2_24 if BR2_microblaze || BR2_powerpc64le
  6. default BR2_BINUTILS_VERSION_2_22
  7. help
  8. Select the version of binutils you wish to use.
  9. config BR2_BINUTILS_VERSION_2_18_AVR32_1_0_1
  10. depends on BR2_avr32
  11. bool "binutils 2.18-avr32-1.0.1"
  12. config BR2_BINUTILS_VERSION_2_21_1
  13. depends on !BR2_avr32 && !BR2_aarch64 && !BR2_microblaze && !BR2_powerpc64le
  14. depends on !BR2_ARM_EABIHF
  15. bool "binutils 2.21.1"
  16. config BR2_BINUTILS_VERSION_2_22
  17. depends on !BR2_avr32 && !BR2_aarch64 && !BR2_microblaze && !BR2_powerpc64le
  18. bool "binutils 2.22"
  19. config BR2_BINUTILS_VERSION_2_23_2
  20. depends on !BR2_avr32 && !BR2_aarch64 && !BR2_microblaze && !BR2_powerpc64le
  21. bool "binutils 2.23.2"
  22. config BR2_BINUTILS_VERSION_2_24
  23. depends on !BR2_avr32
  24. bool "binutils 2.24"
  25. endchoice
  26. config BR2_BINUTILS_VERSION
  27. string
  28. default "2.18-avr32-1.0.1" if BR2_BINUTILS_VERSION_2_18_AVR32_1_0_1
  29. default "arc-4.8-R3" if BR2_arc
  30. default "2.21.1" if BR2_BINUTILS_VERSION_2_21_1
  31. default "2.22" if BR2_BINUTILS_VERSION_2_22
  32. default "2.23.2" if BR2_BINUTILS_VERSION_2_23_2
  33. default "2.24" if BR2_BINUTILS_VERSION_2_24
  34. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  35. string "Additional binutils options"
  36. default ""
  37. help
  38. Any additional binutils options you may want to include.