Config.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_4_8_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_4_8_ARC
  9. select GCC_VERSION_4_8_ARC
  10. bool "gcc 4.8.x with support of ARC cores"
  11. depends on arc
  12. config GCC_USE_VERSION_5
  13. select GCC_VERSION_5
  14. bool "gcc 5.x"
  15. depends on !arc
  16. endchoice
  17. config GCC_USE_GRAPHITE
  18. bool
  19. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  20. config GCC_USE_SYSTEM_PPL_CLOOG
  21. bool
  22. prompt "Use the system versions of PPL and CLooG"
  23. depends on GCC_USE_GRAPHITE && GCC_VERSION_4_8
  24. default n
  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 SSP_SUPPORT
  32. bool
  33. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  34. depends on !USE_MUSL
  35. default y if !USE_MUSL
  36. help
  37. Enable Stack-Smashing Protection support
  38. config SJLJ_EXCEPTIONS
  39. bool
  40. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  41. default n
  42. help
  43. Use old setjump()/longjump() exceptions instead of the newer
  44. frame unwinding exceptions handling routines. Warning: increases
  45. code size and runtime memory usage.
  46. config INSTALL_LIBGCJ
  47. bool
  48. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  49. default n
  50. help
  51. Build/install java compiler and GNU classpath ?
  52. config INSTALL_GFORTRAN
  53. bool
  54. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  55. default n
  56. help
  57. Build/install GNU fortran compiler ?