Config.in 987 B

1234567891011121314151617181920212223242526272829303132333435363738
  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_2_22 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_2_22
  12. depends on !avr32 || (avr32 && BROKEN)
  13. bool "binutils 2.22"
  14. config BINUTILS_VERSION_2_23_1
  15. depends on !avr32 || (avr32 && BROKEN)
  16. bool "binutils 2.23.1"
  17. endchoice
  18. config EXTRA_BINUTILS_CONFIG_OPTIONS
  19. string
  20. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  21. default ""
  22. help
  23. Any additional binutils options you may want to include....
  24. config BINUTILS_VERSION
  25. string
  26. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  27. default "2.20.1" if BINUTILS_VERSION_2_20_1
  28. default "2.22" if BINUTILS_VERSION_2_22
  29. default "2.23.1" if BINUTILS_VERSION_2_23_1
  30. default "2.20.1" if avr32
  31. default "2.22"