Config.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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_3
  12. bool "gcc 4.6.3"
  13. config GCC_VERSION_4_7_2
  14. bool "gcc 4.7.2"
  15. config GCC_VERSION_4_6_LINARO
  16. bool "gcc 4.6.x with Linaro enhancements"
  17. config GCC_VERSION_4_7_LINARO
  18. bool "gcc 4.7.x with Linaro enhancements"
  19. config GCC_VERSION_4_8_0
  20. bool "gcc 4.8.0"
  21. endchoice
  22. config GCC_USE_GRAPHITE
  23. bool
  24. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  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 SJLJ_EXCEPTIONS
  43. bool
  44. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  45. default n
  46. help
  47. Use old setjump()/longjump() exceptions instead of the newer
  48. frame unwinding exceptions handling routines. Warning: increases
  49. code size and runtime memory usage.
  50. config INSTALL_LIBSTDCPP
  51. bool
  52. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  53. default y if !USE_MUSL
  54. help
  55. Build/install c++ compiler and libstdc++?
  56. config INSTALL_LIBGCJ
  57. bool
  58. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  59. default n
  60. help
  61. Build/install java compiler and GNU classpath ?
  62. config INSTALL_GFORTRAN
  63. bool
  64. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  65. default n
  66. help
  67. Build/install GNU fortran compiler ?