Config.in 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_USE_VERSION_4_6_LINARO if TARGET_octeon
  5. default GCC_USE_VERSION_4_8_LINARO
  6. help
  7. Select the version of gcc you wish to use.
  8. config GCC_USE_VERSION_4_6_LINARO
  9. select GCC_VERSION_4_6_LINARO
  10. bool "gcc 4.6.x with Linaro enhancements"
  11. config GCC_USE_VERSION_4_8_LINARO
  12. select GCC_VERSION_4_8_LINARO
  13. bool "gcc 4.8.x with Linaro enhancements"
  14. config GCC_USE_VERSION_4_9_LINARO
  15. select GCC_VERSION_4_9_LINARO
  16. bool "gcc 4.9.x with Linaro enhancements"
  17. depends on BROKEN
  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 GCC_USE_SYSTEM_PPL_CLOOG
  23. bool
  24. prompt "Use the system versions of PPL and CLooG"
  25. depends on GCC_USE_GRAPHITE
  26. default n
  27. config EXTRA_GCC_CONFIG_OPTIONS
  28. string
  29. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  30. default ""
  31. help
  32. Any additional gcc options you may want to include....
  33. config SSP_SUPPORT
  34. bool
  35. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  36. depends on !USE_MUSL
  37. default y if !USE_MUSL
  38. help
  39. Enable Stack-Smashing Protection support
  40. config SJLJ_EXCEPTIONS
  41. bool
  42. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  43. default n
  44. help
  45. Use old setjump()/longjump() exceptions instead of the newer
  46. frame unwinding exceptions handling routines. Warning: increases
  47. code size and runtime memory usage.
  48. config INSTALL_LIBGCJ
  49. bool
  50. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  51. default n
  52. help
  53. Build/install java compiler and GNU classpath ?
  54. config INSTALL_GFORTRAN
  55. bool
  56. prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
  57. default n
  58. help
  59. Build/install GNU fortran compiler ?