Config.in 829 B

1234567891011121314151617181920212223242526272829303132
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_20_1 if avr32
  5. default BINUTILS_VERSION_LINARO if !avr32
  6. help
  7. Select the version of binutils you wish to use.
  8. config BINUTILS_VERSION_2_20_1
  9. depends on avr32
  10. bool "binutils 2.20.1"
  11. config BINUTILS_VERSION_LINARO
  12. depends on !avr32 || (avr32 && BROKEN)
  13. bool "Linaro binutils 2.24"
  14. endchoice
  15. config EXTRA_BINUTILS_CONFIG_OPTIONS
  16. string
  17. prompt "Additional binutils configure 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.20.1" if BINUTILS_VERSION_2_20_1 || avr32
  25. default "linaro" if BINUTILS_VERSION_LINARO
  26. default "linaro"