Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 TARGET_ps3
  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. endif
  22. endchoice
  23. config EABI_SUPPORT
  24. bool
  25. depends arm||armeb
  26. prompt "Enable EABI support" if TOOLCHAINOPTS
  27. default y
  28. help
  29. Enable ARM EABI support
  30. config EXTRA_GCC_CONFIG_OPTIONS
  31. string
  32. prompt "Additional gcc options" if TOOLCHAINOPTS
  33. default ""
  34. help
  35. Any additional gcc options you may want to include....
  36. config SSP_SUPPORT
  37. bool
  38. depends !GCC_VERSION_3_4_6
  39. prompt "Enable Smash Stacking Protection support" if TOOLCHAINOPTS
  40. default n
  41. help
  42. Enable Smash Stacking Protection support
  43. config INSTALL_LIBSTDCPP
  44. bool
  45. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  46. default y
  47. help
  48. Build/install c++ compiler and libstdc++?
  49. config INSTALL_LIBGCJ
  50. bool
  51. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  52. default n
  53. help
  54. Build/install java compiler and GNU classpath ?