Config.in.host 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. comment "Binutils Options"
  2. choice
  3. prompt "Binutils Version"
  4. default BR2_BINUTILS_VERSION_2_21 if (BR2_mips || BR2_mipsel || BR2_sh)
  5. default BR2_BINUTILS_VERSION_2_22 if (BR2_UCLIBC_VERSION_0_9_32 || BR2_UCLIBC_VERSION_SNAPSHOT)
  6. default BR2_BINUTILS_VERSION_2_21
  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_20
  13. depends on !BR2_avr32
  14. bool "binutils 2.20"
  15. config BR2_BINUTILS_VERSION_2_20_1
  16. depends on !BR2_avr32
  17. bool "binutils 2.20.1"
  18. config BR2_BINUTILS_VERSION_2_21
  19. depends on !BR2_avr32
  20. bool "binutils 2.21"
  21. config BR2_BINUTILS_VERSION_2_21_1
  22. depends on !(BR2_avr32 || BR2_UCLIBC_VERSION_0_9_30 || BR2_UCLIBC_VERSION_0_9_31)
  23. bool "binutils 2.21.1"
  24. config BR2_BINUTILS_VERSION_2_22
  25. depends on !(BR2_avr32 || BR2_UCLIBC_VERSION_0_9_30 || BR2_UCLIBC_VERSION_0_9_31)
  26. bool "binutils 2.22"
  27. endchoice
  28. config BR2_BINUTILS_VERSION
  29. string
  30. default "2.18-avr32-1.0.1" if BR2_BINUTILS_VERSION_2_18_AVR32_1_0_1
  31. default "2.20" if BR2_BINUTILS_VERSION_2_20
  32. default "2.20.1" if BR2_BINUTILS_VERSION_2_20_1
  33. default "2.21" if BR2_BINUTILS_VERSION_2_21
  34. default "2.21.1" if BR2_BINUTILS_VERSION_2_21_1
  35. default "2.22" if BR2_BINUTILS_VERSION_2_22
  36. config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
  37. string "Additional binutils options"
  38. default ""
  39. help
  40. Any additional binutils options you may want to include.