Config.in 1.5 KB

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