Config.in 1.1 KB

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