Config.in 1.4 KB

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