Config.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_8 if arc
  5. default GCC_USE_VERSION_7
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_USE_VERSION_5
  9. bool "gcc 5.x"
  10. depends on !arc
  11. config GCC_USE_VERSION_7
  12. bool "gcc 7.x"
  13. depends on !arc
  14. config GCC_USE_VERSION_8
  15. bool "gcc 8.x"
  16. config GCC_USE_VERSION_9
  17. bool "gcc 9.x"
  18. endchoice
  19. config GCC_USE_GRAPHITE
  20. bool
  21. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  22. config EXTRA_GCC_CONFIG_OPTIONS
  23. string
  24. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  25. default ""
  26. help
  27. Any additional gcc options you may want to include....
  28. config GCC_DEFAULT_PIE
  29. bool
  30. prompt "Build executable with PIE enabled by default" if TOOLCHAINOPTS
  31. depends on !GCC_USE_VERSION_5
  32. default n
  33. help
  34. Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
  35. config GCC_DEFAULT_SSP
  36. bool
  37. prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
  38. default n
  39. help
  40. Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
  41. config GCC_LIBSSP
  42. bool
  43. prompt "Build gcc libssp" if TOOLCHAINOPTS
  44. depends on !USE_MUSL
  45. default y if !USE_MUSL
  46. help
  47. Enable Stack-Smashing Protection support
  48. config SJLJ_EXCEPTIONS
  49. bool
  50. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  51. default n
  52. help
  53. Use old setjump()/longjump() exceptions instead of the newer
  54. frame unwinding exceptions handling routines. Warning: increases
  55. code size and runtime memory usage.
  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 ?
  62. config INSTALL_GCCGO
  63. bool
  64. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  65. depends on USE_GLIBC || BROKEN
  66. default n
  67. help
  68. Build/install GNU gccgo compiler ?