Config.in 815 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_17
  5. help
  6. Select the version of binutils you wish to use.
  7. config BINUTILS_VERSION_2_16_1
  8. bool "binutils 2.16.1"
  9. config BINUTILS_VERSION_2_17
  10. bool "binutils 2.17"
  11. config BINUTILS_VERSION_2_18
  12. bool "binutils 2.18"
  13. depends !TARGET_avr32
  14. endchoice
  15. config EXTRA_BINUTILS_CONFIG_OPTIONS
  16. string
  17. prompt "Additional binutils options" if TOOLCHAINOPTS
  18. default ""
  19. help
  20. Any additional binutils options you may want to include....
  21. config BINUTILS_VERSION
  22. string
  23. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  24. default "2.16.1" if BINUTILS_VERSION_2_16_1
  25. default "2.17" if BINUTILS_VERSION_2_17
  26. default "2.18" if BINUTILS_VERSION_2_18
  27. default "2.17"