2
0

Config.in 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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_4_7_LINARO
  20. bool "gcc 4.7.x with Linaro enhancements"
  21. config GCC_VERSION_LLVM
  22. bool "llvm-gcc 4.2"
  23. depends BROKEN
  24. endchoice
  25. config GCC_USE_GRAPHITE
  26. bool
  27. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  28. depends !GCC_VERSION_LLVM
  29. config GCC_USE_SYSTEM_PPL_CLOOG
  30. bool
  31. prompt "Use the system versions of PPL and CLooG"
  32. depends GCC_USE_GRAPHITE
  33. default n
  34. config EXTRA_GCC_CONFIG_OPTIONS
  35. string
  36. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  37. default ""
  38. help
  39. Any additional gcc options you may want to include....
  40. config SSP_SUPPORT
  41. bool
  42. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  43. default n
  44. help
  45. Enable Stack-Smashing Protection support
  46. config TLS_SUPPORT
  47. bool
  48. prompt "Enable Thread-local storage (TLS) support" if TOOLCHAINOPTS
  49. default n
  50. help
  51. Enable Thread-local storage support
  52. config SJLJ_EXCEPTIONS
  53. bool
  54. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  55. default n
  56. help
  57. Use old setjump()/longjump() exceptions instead of the newer
  58. frame unwinding exceptions handling routines. Warning: increases
  59. code size and runtime memory usage.
  60. config INSTALL_LIBSTDCPP
  61. bool
  62. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  63. default y
  64. help
  65. Build/install c++ compiler and libstdc++?
  66. config INSTALL_LIBGCJ
  67. bool
  68. depends on !GCC_VERSION_LLVM
  69. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  70. default n
  71. help
  72. Build/install java compiler and GNU classpath ?
  73. config INSTALL_GFORTRAN
  74. bool
  75. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  76. default n
  77. help
  78. Build/install GNU fortran compiler ?