Config.in 1.6 KB

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