Config.in 2.3 KB

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