Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_3_3 if powerpc64
  9. default GCC_VERSION_4_3_3 if TARGET_etrax
  10. default GCC_VERSION_4_3_3 if TARGET_coldfire
  11. default GCC_VERSION_4_4_0 if ubicom32
  12. default GCC_VERSION_4_4_1 if TARGET_octeon
  13. default GCC_VERSION_4_1_2
  14. help
  15. Select the version of gcc you wish to use.
  16. config GCC_VERSION_3_4_6
  17. bool "gcc 3.4.6"
  18. if !LINUX_2_4
  19. config GCC_VERSION_4_1_2
  20. bool "gcc 4.1.2"
  21. config GCC_VERSION_4_2_4
  22. bool "gcc 4.2.4"
  23. config GCC_VERSION_4_3_3
  24. bool "gcc 4.3.3"
  25. config GCC_VERSION_4_3_4
  26. bool "gcc 4.3.4"
  27. config GCC_VERSION_4_4_0
  28. bool "gcc 4.4.0"
  29. config GCC_VERSION_4_4_1
  30. bool "gcc 4.4.1"
  31. endif
  32. endchoice
  33. config EXTRA_GCC_CONFIG_OPTIONS
  34. string
  35. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  36. default ""
  37. help
  38. Any additional gcc options you may want to include....
  39. config SSP_SUPPORT
  40. bool
  41. depends !GCC_VERSION_3_4_6
  42. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  43. default n
  44. help
  45. Enable Stack-Smashing Protection support
  46. config INSTALL_LIBSTDCPP
  47. bool
  48. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  49. default y
  50. help
  51. Build/install c++ compiler and libstdc++?
  52. config INSTALL_LIBGCJ
  53. bool
  54. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  55. default n
  56. help
  57. Build/install java compiler and GNU classpath ?