Config.in 1.9 KB

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