Config.in 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_7_1_ARC if arc
  5. default GCC_USE_VERSION_7
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_USE_VERSION_7_1_ARC
  9. select GCC_VERSION_7_1_ARC
  10. bool "gcc 7.1.x with support of ARC cores"
  11. depends on arc
  12. config GCC_USE_VERSION_5
  13. bool "gcc 5.x"
  14. depends on !arc
  15. config GCC_USE_VERSION_7
  16. bool "gcc 7.x"
  17. depends on !arc
  18. config GCC_USE_VERSION_8
  19. bool "gcc 8.x"
  20. depends on !arc
  21. endchoice
  22. config GCC_USE_GRAPHITE
  23. bool
  24. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  25. config EXTRA_GCC_CONFIG_OPTIONS
  26. string
  27. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  28. default ""
  29. help
  30. Any additional gcc options you may want to include....
  31. config GCC_DEFAULT_PIE
  32. bool
  33. prompt "Build executable with PIE enabled by default" if TOOLCHAINOPTS
  34. depends on !GCC_USE_VERSION_5
  35. default n
  36. help
  37. Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
  38. config GCC_DEFAULT_SSP
  39. bool
  40. prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
  41. default n
  42. help
  43. Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
  44. config GCC_LIBSSP
  45. bool
  46. prompt "Build gcc libssp" if TOOLCHAINOPTS
  47. depends on !USE_MUSL
  48. default y if !USE_MUSL
  49. help
  50. Enable Stack-Smashing Protection support
  51. config SJLJ_EXCEPTIONS
  52. bool
  53. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  54. default n
  55. help
  56. Use old setjump()/longjump() exceptions instead of the newer
  57. frame unwinding exceptions handling routines. Warning: increases
  58. code size and runtime memory usage.
  59. config INSTALL_GFORTRAN
  60. bool
  61. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  62. default n
  63. help
  64. Build/install GNU fortran compiler ?
  65. config INSTALL_GCCGO
  66. bool
  67. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  68. depends on USE_GLIBC || BROKEN
  69. default n
  70. help
  71. Build/install GNU gccgo compiler ?