2
0

Config.in 505 B

123456789101112131415161718192021222324
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_2_16_1
  5. help
  6. Select the version of binutils you wish to use.
  7. config BINUTILS_VERSION_2_16_1
  8. bool "binutils 2.16.1"
  9. config BINUTILS_VERSION_2_17
  10. bool "binutils 2.17"
  11. endchoice
  12. config BINUTILS_VERSION
  13. string
  14. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  15. default "2.16.1" if BINUTILS_VERSION_2_16_1
  16. default "2.17" if BINUTILS_VERSION_2_17
  17. default "2.16.1"