Config.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. endchoice
  17. config GCC_USE_GRAPHITE
  18. bool
  19. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  20. config EXTRA_GCC_CONFIG_OPTIONS
  21. string
  22. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  23. default ""
  24. help
  25. Any additional gcc options you may want to include....
  26. config GCC_DEFAULT_PIE
  27. bool
  28. prompt "Build executable with PIE enabled by default" if TOOLCHAINOPTS
  29. depends on !GCC_USE_VERSION_5
  30. default n
  31. help
  32. Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
  33. config GCC_DEFAULT_SSP
  34. bool
  35. prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
  36. default n
  37. help
  38. Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
  39. config GCC_LIBSSP
  40. bool
  41. prompt "Build gcc libssp" if TOOLCHAINOPTS
  42. depends on !USE_MUSL
  43. default y if !USE_MUSL
  44. help
  45. Enable Stack-Smashing Protection support
  46. config SJLJ_EXCEPTIONS
  47. bool
  48. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  49. default n
  50. help
  51. Use old setjump()/longjump() exceptions instead of the newer
  52. frame unwinding exceptions handling routines. Warning: increases
  53. code size and runtime memory usage.
  54. config INSTALL_GFORTRAN
  55. bool
  56. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  57. default n
  58. help
  59. Build/install GNU fortran compiler ?
  60. config INSTALL_GCCGO
  61. bool
  62. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  63. depends on USE_GLIBC || BROKEN
  64. default n
  65. help
  66. Build/install GNU gccgo compiler ?