Config.in 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_VERSION_4_4_7 if GCC_DEFAULT_VERSION_4_4_7
  5. default GCC_VERSION_4_6_LINARO
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_VERSION_4_4_7
  9. bool "gcc 4.4.7"
  10. depends (avr32 || ubicom32)
  11. config GCC_VERSION_4_6_2
  12. bool "gcc 4.6.2"
  13. config GCC_VERSION_4_7_0
  14. bool "gcc 4.7.0"
  15. config GCC_VERSION_4_5_LINARO
  16. bool "gcc 4.5.x with Linaro enhancements"
  17. config GCC_VERSION_4_6_LINARO
  18. bool "gcc 4.6.x with Linaro enhancements"
  19. config GCC_VERSION_LLVM
  20. bool "llvm-gcc 4.2"
  21. depends BROKEN
  22. endchoice
  23. config GCC_USE_GRAPHITE
  24. bool
  25. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  26. depends !GCC_VERSION_LLVM
  27. config GCC_USE_SYSTEM_PPL_CLOOG
  28. bool
  29. prompt "Use the system versions of PPL and CLooG"
  30. depends GCC_USE_GRAPHITE
  31. default n
  32. config EXTRA_GCC_CONFIG_OPTIONS
  33. string
  34. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  35. default ""
  36. help
  37. Any additional gcc options you may want to include....
  38. config SSP_SUPPORT
  39. bool
  40. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  41. default n
  42. help
  43. Enable Stack-Smashing Protection support
  44. config TLS_SUPPORT
  45. bool
  46. prompt "Enable Thread-local storage (TLS) support" if TOOLCHAINOPTS
  47. default n
  48. help
  49. Enable Thread-local storage support
  50. config SJLJ_EXCEPTIONS
  51. bool
  52. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  53. default n
  54. help
  55. Use old setjump()/longjump() exceptions instead of the newer
  56. frame unwinding exceptions handling routines. Warning: increases
  57. code size and runtime memory usage.
  58. config INSTALL_LIBSTDCPP
  59. bool
  60. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  61. default y
  62. help
  63. Build/install c++ compiler and libstdc++?
  64. config INSTALL_LIBGCJ
  65. bool
  66. depends on !GCC_VERSION_LLVM
  67. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  68. default n
  69. help
  70. Build/install java compiler and GNU classpath ?
  71. config INSTALL_GFORTRAN
  72. bool
  73. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  74. default n
  75. help
  76. Build/install GNU fortran compiler ?