Config.in 810 B

12345678910111213141516171819202122232425262728293031
  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_19_1
  6. help
  7. Select the version of binutils you wish to use.
  8. config BINUTILS_VERSION_2_18
  9. bool "binutils 2.18"
  10. config BINUTILS_VERSION_2_19_1
  11. depends !TARGET_avr32
  12. bool "binutils 2.19.1"
  13. endchoice
  14. config EXTRA_BINUTILS_CONFIG_OPTIONS
  15. string
  16. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  17. default ""
  18. help
  19. Any additional binutils options you may want to include....
  20. config BINUTILS_VERSION
  21. string
  22. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  23. default "2.18" if BINUTILS_VERSION_2_18
  24. default "2.19.1" if BINUTILS_VERSION_2_19_1
  25. default "2.18" if TARGET_avr32
  26. default "2.19.1"