Config.in 1.6 KB

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