Config.in 2.1 KB

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