Config.in 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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_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_LINARO
  14. bool "gcc 4.5.x with Linaro enhancements"
  15. config GCC_VERSION_LLVM
  16. bool "llvm-gcc 4.2"
  17. depends BROKEN
  18. endchoice
  19. config GCC_USE_GRAPHITE
  20. bool
  21. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  22. depends !GCC_VERSION_LLVM
  23. config GCC_USE_SYSTEM_PPL_CLOOG
  24. bool
  25. prompt "Use the system versions of PPL and CLooG"
  26. depends GCC_USE_GRAPHITE
  27. default n
  28. config EXTRA_GCC_CONFIG_OPTIONS
  29. string
  30. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  31. default ""
  32. help
  33. Any additional gcc options you may want to include....
  34. config SSP_SUPPORT
  35. bool
  36. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  37. default n
  38. help
  39. Enable Stack-Smashing Protection support
  40. config TLS_SUPPORT
  41. bool
  42. prompt "Enable Thread-local storage (TLS) support" if TOOLCHAINOPTS
  43. default n
  44. help
  45. Enable Thread-local storage support
  46. config SJLJ_EXCEPTIONS
  47. bool
  48. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  49. default n
  50. help
  51. Use old setjump()/longjump() exceptions instead of the newer
  52. frame unwinding exceptions handling routines. Warning: increases
  53. code size and runtime memory usage.
  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 ?
  67. config INSTALL_GFORTRAN
  68. bool
  69. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  70. default n
  71. help
  72. Build/install GNU fortran compiler ?