Config.in 926 B

123456789101112131415161718192021222324252627282930313233
  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_18 if TARGET_ppc44x || TARGET_ppc40x
  6. default BINUTILS_VERSION_2_19_1
  7. help
  8. Select the version of binutils you wish to use.
  9. config BINUTILS_VERSION_2_18
  10. bool "binutils 2.18"
  11. config BINUTILS_VERSION_2_19_1
  12. depends !TARGET_avr32
  13. bool "binutils 2.19.1"
  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.18" if BINUTILS_VERSION_2_18
  25. default "2.19.1" if BINUTILS_VERSION_2_19_1
  26. default "2.18" if TARGET_avr32
  27. default "2.18" if TARGET_ppc44x || TARGET_ppc40x
  28. default "2.19.1"