Config.in 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_VERSION_4_3_5 if (avr32 || powerpc64)
  5. default GCC_VERSION_4_3_5 if (TARGET_coldfire || TARGET_etrax || TARGET_gemini)
  6. default GCC_VERSION_4_3_3_CS if (arm || armeb) && !(TARGET_gemini || TARGET_omap35xx)
  7. default GCC_VERSION_4_3_3_CS if (mips || mipsel) && !(TARGET_octeon || TARGET_sibyte)
  8. default GCC_VERSION_4_4_5 if (powerpc || ubicom32)
  9. default GCC_VERSION_4_4_5 if (TARGET_omap35xx || TARGET_octeon || TARGET_sibyte)
  10. default GCC_VERSION_4_1_2
  11. help
  12. Select the version of gcc you wish to use.
  13. config GCC_VERSION_4_1_2
  14. bool "gcc 4.1.2"
  15. config GCC_VERSION_4_2_4
  16. bool "gcc 4.2.4"
  17. config GCC_VERSION_4_3_5
  18. bool "gcc 4.3.5"
  19. config GCC_VERSION_4_4_5
  20. bool "gcc 4.4.5"
  21. config GCC_VERSION_4_5_1
  22. bool "gcc 4.5.1"
  23. config GCC_VERSION_4_5_1_LINARO
  24. bool "gcc 4.5.1 with Linaro enhancements"
  25. config GCC_VERSION_LLVM
  26. bool "llvm-gcc 4.2"
  27. depends BROKEN
  28. config GCC_VERSION_4_3_3_CS
  29. bool "gcc 4.3.3 with CodeSourcery enhancements"
  30. config GCC_VERSION_4_4_1_CS
  31. bool "gcc 4.4.1 with CodeSourcery enhancements"
  32. endchoice
  33. config GCC_USE_GRAPHITE
  34. bool
  35. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  36. depends GCC_VERSION_4_4 || GCC_VERSION_4_5
  37. config GCC_USE_SYSTEM_PPL_CLOOG
  38. bool
  39. prompt "Use the system versions of PPL and CLooG"
  40. depends GCC_USE_GRAPHITE
  41. default n
  42. config EXTRA_GCC_CONFIG_OPTIONS
  43. string
  44. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  45. default ""
  46. help
  47. Any additional gcc options you may want to include....
  48. config SSP_SUPPORT
  49. bool
  50. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  51. default n
  52. help
  53. Enable Stack-Smashing Protection support
  54. config TLS_SUPPORT
  55. bool
  56. depends UCLIBC_VERSION_NPTL
  57. prompt "Enable Thread-local storage (TLS) support" if TOOLCHAINOPTS
  58. default n
  59. help
  60. Enable Thread-local storage support
  61. config INSTALL_LIBSTDCPP
  62. bool
  63. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  64. default y
  65. help
  66. Build/install c++ compiler and libstdc++?
  67. config INSTALL_LIBGCJ
  68. bool
  69. depends on !(GCC_VERSION_4_1||GCC_VERSION_4_2)
  70. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  71. default n
  72. help
  73. Build/install java compiler and GNU classpath ?