Config.in 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_13
  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_DEFAULT_VERSION
  15. bool
  16. default y if !TOOLCHAINOPTS || GCC_USE_VERSION_13
  17. imply KERNEL_WERROR
  18. config GCC_USE_GRAPHITE
  19. bool
  20. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  21. config EXTRA_GCC_CONFIG_OPTIONS
  22. string
  23. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  24. default ""
  25. help
  26. Any additional gcc options you may want to include....
  27. config GCC_DEFAULT_PIE
  28. bool
  29. prompt "Build executable with PIE enabled by default" if TOOLCHAINOPTS
  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. help
  36. Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
  37. config SJLJ_EXCEPTIONS
  38. bool
  39. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  40. help
  41. Use old setjump()/longjump() exceptions instead of the newer
  42. frame unwinding exceptions handling routines. Warning: increases
  43. code size and runtime memory usage.
  44. config INSTALL_GFORTRAN
  45. bool
  46. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  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. help
  54. Build/install GNU gccgo compiler ?