Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_8
  5. help
  6. Select the version of gcc you wish to use.
  7. config GCC_USE_VERSION_7
  8. bool "gcc 7.x"
  9. depends on !arc
  10. config GCC_USE_VERSION_8
  11. bool "gcc 8.x"
  12. config GCC_USE_VERSION_9
  13. bool "gcc 9.x"
  14. config GCC_USE_VERSION_10
  15. bool "gcc 10.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. default n
  30. help
  31. Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
  32. config GCC_DEFAULT_SSP
  33. bool
  34. prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
  35. default n
  36. help
  37. Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
  38. config SJLJ_EXCEPTIONS
  39. bool
  40. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  41. default n
  42. help
  43. Use old setjump()/longjump() exceptions instead of the newer
  44. frame unwinding exceptions handling routines. Warning: increases
  45. code size and runtime memory usage.
  46. config INSTALL_GFORTRAN
  47. bool
  48. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  49. default n
  50. help
  51. Build/install GNU fortran compiler ?
  52. config INSTALL_GCCGO
  53. bool
  54. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  55. depends on USE_GLIBC || BROKEN
  56. default n
  57. help
  58. Build/install GNU gccgo compiler ?