2
0

Config.in 708 B

1234567891011121314151617181920212223242526272829
  1. # Choose binutils version.
  2. choice
  3. prompt "Binutils Version" if TOOLCHAINOPTS
  4. default BINUTILS_VERSION_LINARO
  5. help
  6. Select the version of binutils you wish to use.
  7. config BINUTILS_VERSION_LINARO
  8. bool "Linaro binutils 2.24"
  9. config BINUTILS_VERSION_2_25_1
  10. bool "Binutils 2.25.1"
  11. endchoice
  12. config EXTRA_BINUTILS_CONFIG_OPTIONS
  13. string
  14. prompt "Additional binutils configure options" if TOOLCHAINOPTS
  15. default ""
  16. help
  17. Any additional binutils options you may want to include....
  18. config BINUTILS_VERSION
  19. string
  20. prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
  21. default "linaro" if BINUTILS_VERSION_LINARO
  22. default "2.25.1" if BINUTILS_VERSION_2_25_1
  23. default "linaro"