Config.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_6_2_ARC if arc
  5. default GCC_USE_VERSION_5
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_USE_VERSION_6_2_ARC
  9. select GCC_VERSION_6_2_ARC
  10. bool "gcc 6.2.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_6
  16. bool "gcc 6.x"
  17. depends on !arc
  18. endchoice
  19. config GCC_USE_GRAPHITE
  20. bool
  21. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  22. config EXTRA_GCC_CONFIG_OPTIONS
  23. string
  24. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  25. default ""
  26. help
  27. Any additional gcc options you may want to include....
  28. config SSP_SUPPORT
  29. bool
  30. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  31. depends on !USE_MUSL
  32. default y if !USE_MUSL
  33. help
  34. Enable Stack-Smashing Protection support
  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_LIBGCJ
  44. bool
  45. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  46. default n
  47. help
  48. Build/install java compiler and GNU classpath ?
  49. config INSTALL_GFORTRAN
  50. bool
  51. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  52. default n
  53. help
  54. Build/install GNU fortran compiler ?
  55. config INSTALL_GCCGO
  56. bool
  57. prompt "Build/install Go compiler?" if TOOLCHAINOPTS
  58. depends on USE_GLIBC || BROKEN
  59. default n
  60. help
  61. Build/install GNU gccgo compiler ?