Config.in 2.3 KB

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