Config.in 731 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_VERSION_3_4_6 if LINUX_2_4
  5. default GCC_VERSION_4_1_2
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_VERSION_3_4_6
  9. bool "gcc 3.4.6"
  10. config GCC_VERSION_4_1_2
  11. depends !LINUX_2_4
  12. bool "gcc 4.1.2"
  13. config GCC_VERSION_4_2
  14. depends !LINUX_2_4
  15. bool "gcc 4.2 (20060709)"
  16. endchoice
  17. config EXTRA_GCC_CONFIG_OPTIONS
  18. string
  19. prompt "Additional gcc options" if TOOLCHAINOPTS
  20. default ""
  21. help
  22. Any additional gcc options you may want to include....
  23. config INSTALL_LIBSTDCPP
  24. bool
  25. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  26. default y
  27. help
  28. Build/install c++ compiler and libstdc++?