Config.in 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_4_8_ARC if arc
  5. default GCC_USE_VERSION_5
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_USE_VERSION_4_8_ARC
  9. select GCC_VERSION_4_8_ARC
  10. bool "gcc 4.8.x with support of ARC cores"
  11. depends on arc
  12. config GCC_USE_VERSION_5
  13. bool "gcc 5.x"
  14. depends on !arc
  15. config GCC_USE_VERSION_6
  16. bool "gcc 6.x"
  17. depends on !arc
  18. endchoice
  19. config GCC_USE_GRAPHITE
  20. depends on !GCC_VERSION_4_8_ARC
  21. bool
  22. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  23. config EXTRA_GCC_CONFIG_OPTIONS
  24. string
  25. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  26. default ""
  27. help
  28. Any additional gcc options you may want to include....
  29. config SSP_SUPPORT
  30. bool
  31. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  32. depends on !USE_MUSL
  33. default y if !USE_MUSL
  34. help
  35. Enable Stack-Smashing Protection support
  36. config SJLJ_EXCEPTIONS
  37. bool
  38. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  39. default n
  40. help
  41. Use old setjump()/longjump() exceptions instead of the newer
  42. frame unwinding exceptions handling routines. Warning: increases
  43. code size and runtime memory usage.
  44. config INSTALL_LIBGCJ
  45. bool
  46. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  47. default n
  48. help
  49. Build/install java compiler and GNU classpath ?
  50. config INSTALL_GFORTRAN
  51. bool
  52. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  53. default n
  54. help
  55. Build/install GNU fortran compiler ?
  56. config INSTALL_GCCGO
  57. bool
  58. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  59. depends on !GCC_VERSION_4_8 && (USE_GLIBC || BROKEN)
  60. default n
  61. help
  62. Build/install GNU gccgo compiler ?