Config.in 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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_8_0
  13. select GCC_VERSION_4_8_0
  14. bool "gcc 4.8.0"
  15. config GCC_USE_VERSION_4_6_LINARO
  16. select GCC_VERSION_4_6_LINARO
  17. bool "gcc 4.6.x with Linaro enhancements"
  18. config GCC_USE_VERSION_4_8_LINARO
  19. select GCC_VERSION_4_8_LINARO
  20. bool "gcc 4.8.x with Linaro enhancements"
  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 on 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_LIBGCJ
  51. bool
  52. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  53. default n
  54. help
  55. Build/install java compiler and GNU classpath ?
  56. config INSTALL_GFORTRAN
  57. bool
  58. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  59. default n
  60. help
  61. Build/install GNU fortran compiler ?