Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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_2_4 if TARGET_avr32
  6. default GCC_VERSION_4_2_4 if TARGET_ppc40x
  7. default GCC_VERSION_4_2_4 if TARGET_ppc44x
  8. default GCC_VERSION_4_1_2
  9. help
  10. Select the version of gcc you wish to use.
  11. config GCC_VERSION_3_4_6
  12. bool "gcc 3.4.6"
  13. config GCC_VERSION_4_1_2
  14. depends !LINUX_2_4
  15. bool "gcc 4.1.2"
  16. config GCC_VERSION_4_2_4
  17. depends !LINUX_2_4
  18. bool "gcc 4.2.4"
  19. endchoice
  20. config EABI_SUPPORT
  21. bool
  22. depends arm||armeb
  23. prompt "Enable EABI support" if TOOLCHAINOPTS
  24. default n
  25. help
  26. Enable ARM EABI support
  27. config EXTRA_GCC_CONFIG_OPTIONS
  28. string
  29. prompt "Additional gcc options" if TOOLCHAINOPTS
  30. default ""
  31. help
  32. Any additional gcc options you may want to include....
  33. config SSP_SUPPORT
  34. bool
  35. prompt "Enable Smash Stacking Protection support" if TOOLCHAINOPTS
  36. default n
  37. help
  38. Enable Smash Stacking Protection support
  39. config INSTALL_LIBSTDCPP
  40. bool
  41. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  42. default y
  43. help
  44. Build/install c++ compiler and libstdc++?
  45. config INSTALL_LIBGCJ
  46. bool
  47. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  48. default n
  49. help
  50. Build/install java compiler and GNU classpath ?