Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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_17
  10. bool "binutils 2.17"
  11. config BINUTILS_VERSION_2_18
  12. bool "binutils 2.18"
  13. config BINUTILS_VERSION_2_19
  14. depends !TARGET_avr32
  15. bool "binutils 2.19"
  16. config BINUTILS_VERSION_2_19_1
  17. depends !TARGET_avr32
  18. bool "binutils 2.19.1"
  19. endchoice
  20. config EXTRA_BINUTILS_CONFIG_OPTIONS
  21. string
  22. prompt "Additional binutils options" if TOOLCHAINOPTS
  23. default ""
  24. help
  25. Any additional binutils options you may want to include....
  26. config BINUTILS_VERSION
  27. string
  28. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  29. default "2.17" if BINUTILS_VERSION_2_17
  30. default "2.18" if BINUTILS_VERSION_2_18
  31. default "2.19" if BINUTILS_VERSION_2_19
  32. default "2.19.1" if BINUTILS_VERSION_2_19_1
  33. default "2.18" if TARGET_avr32
  34. default "2.18" if TARGET_ppc44x || TARGET_ppc40x
  35. default "2.19.1"