Config.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. default n
  25. help
  26. Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
  27. config GCC_DEFAULT_SSP
  28. bool
  29. prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
  30. default n
  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. default n
  37. help
  38. Use old setjump()/longjump() exceptions instead of the newer
  39. frame unwinding exceptions handling routines. Warning: increases
  40. code size and runtime memory usage.
  41. config INSTALL_GFORTRAN
  42. bool
  43. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  44. default n
  45. help
  46. Build/install GNU fortran compiler ?
  47. config INSTALL_GCCGO
  48. bool
  49. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  50. depends on USE_GLIBC || BROKEN
  51. default n
  52. help
  53. Build/install GNU gccgo compiler ?