Config.in 889 B

123456789101112131415161718192021222324252627282930313233
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_23_1 if (aarch64 || aarch64_be)
  5. default BINUTILS_VERSION_2_20_1 if avr32
  6. default BINUTILS_VERSION_LINARO if !avr32
  7. help
  8. Select the version of binutils you wish to use.
  9. config BINUTILS_VERSION_2_20_1
  10. depends on avr32
  11. bool "binutils 2.20.1"
  12. config BINUTILS_VERSION_LINARO
  13. depends on !avr32 || (avr32 && BROKEN)
  14. bool "Linaro binutils 2.24"
  15. endchoice
  16. config EXTRA_BINUTILS_CONFIG_OPTIONS
  17. string
  18. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  19. default ""
  20. help
  21. Any additional binutils options you may want to include....
  22. config BINUTILS_VERSION
  23. string
  24. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  25. default "2.20.1" if BINUTILS_VERSION_2_20_1 || avr32
  26. default "linaro" if BINUTILS_VERSION_LINARO
  27. default "linaro"