Config.in 897 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_18 if TARGET_avr32
  5. default BINUTILS_VERSION_2_17
  6. help
  7. Select the version of binutils you wish to use.
  8. config BINUTILS_VERSION_2_17
  9. bool "binutils 2.17"
  10. config BINUTILS_VERSION_2_18
  11. bool "binutils 2.18"
  12. config BINUTILS_VERSION_2_19
  13. depends !TARGET_avr32
  14. bool "binutils 2.19"
  15. endchoice
  16. config EXTRA_BINUTILS_CONFIG_OPTIONS
  17. string
  18. prompt "Additional binutils 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.17" if BINUTILS_VERSION_2_17
  26. default "2.18" if BINUTILS_VERSION_2_18
  27. default "2.19" if BINUTILS_VERSION_2_19
  28. default "2.18" if TARGET_avr32
  29. default "2.17"