Config.in 1.9 KB

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