1
0

Config.in 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. endchoice
  21. config GCC_USE_GRAPHITE
  22. bool
  23. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  24. config EXTRA_GCC_CONFIG_OPTIONS
  25. string
  26. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  27. default ""
  28. help
  29. Any additional gcc options you may want to include....
  30. config GCC_DEFAULT_PIE
  31. bool
  32. prompt "Build executable with PIE enabled by default" if TOOLCHAINOPTS
  33. depends on !GCC_USE_VERSION_5
  34. default n
  35. help
  36. Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
  37. config GCC_DEFAULT_SSP
  38. bool
  39. prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
  40. default n
  41. help
  42. Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
  43. config GCC_LIBSSP
  44. bool
  45. prompt "Build gcc libssp" if TOOLCHAINOPTS
  46. depends on !USE_MUSL
  47. default y if !USE_MUSL
  48. help
  49. Enable Stack-Smashing Protection support
  50. config SJLJ_EXCEPTIONS
  51. bool
  52. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  53. default n
  54. help
  55. Use old setjump()/longjump() exceptions instead of the newer
  56. frame unwinding exceptions handling routines. Warning: increases
  57. code size and runtime memory usage.
  58. config INSTALL_GFORTRAN
  59. bool
  60. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  61. default n
  62. help
  63. Build/install GNU fortran compiler ?
  64. config INSTALL_GCCGO
  65. bool
  66. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  67. depends on USE_GLIBC || BROKEN
  68. default n
  69. help
  70. Build/install GNU gccgo compiler ?