Config.in 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_4_4_7 if avr32
  5. default GCC_USE_VERSION_4_6_LINARO
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_USE_VERSION_4_4_7
  9. select GCC_VERSION_4_4_7
  10. bool "gcc 4.4.7"
  11. depends on avr32
  12. config GCC_USE_VERSION_4_6_3
  13. select GCC_VERSION_4_6_3
  14. bool "gcc 4.6.3"
  15. config GCC_USE_VERSION_4_8_0
  16. select GCC_VERSION_4_8_0
  17. bool "gcc 4.8.0"
  18. config GCC_USE_VERSION_4_6_LINARO
  19. select GCC_VERSION_4_6_LINARO
  20. bool "gcc 4.6.x with Linaro enhancements"
  21. config GCC_USE_VERSION_4_8_LINARO
  22. select GCC_VERSION_4_8_LINARO
  23. bool "gcc 4.8.x with Linaro enhancements"
  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. config GCC_USE_SYSTEM_PPL_CLOOG
  29. bool
  30. prompt "Use the system versions of PPL and CLooG"
  31. depends on GCC_USE_GRAPHITE
  32. default n
  33. config EXTRA_GCC_CONFIG_OPTIONS
  34. string
  35. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  36. default ""
  37. help
  38. Any additional gcc options you may want to include....
  39. config SSP_SUPPORT
  40. bool
  41. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  42. default n
  43. help
  44. Enable Stack-Smashing Protection support
  45. config SJLJ_EXCEPTIONS
  46. bool
  47. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  48. default n
  49. help
  50. Use old setjump()/longjump() exceptions instead of the newer
  51. frame unwinding exceptions handling routines. Warning: increases
  52. code size and runtime memory usage.
  53. config INSTALL_LIBGCJ
  54. bool
  55. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  56. default n
  57. help
  58. Build/install java compiler and GNU classpath ?
  59. config INSTALL_GFORTRAN
  60. bool
  61. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  62. default n
  63. help
  64. Build/install GNU fortran compiler ?