Config.in 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. config GCC_USE_VERSION_5
  19. select GCC_VERSION_5
  20. bool "gcc 5.x"
  21. depends on BROKEN
  22. endchoice
  23. config GCC_USE_GRAPHITE
  24. bool
  25. prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
  26. config GCC_USE_SYSTEM_PPL_CLOOG
  27. bool
  28. prompt "Use the system versions of PPL and CLooG"
  29. depends on GCC_USE_GRAPHITE
  30. default n
  31. config EXTRA_GCC_CONFIG_OPTIONS
  32. string
  33. prompt "Additional gcc configure options" if TOOLCHAINOPTS
  34. default ""
  35. help
  36. Any additional gcc options you may want to include....
  37. config SSP_SUPPORT
  38. bool
  39. prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
  40. depends on !USE_MUSL
  41. default y if !USE_MUSL
  42. help
  43. Enable Stack-Smashing Protection support
  44. config SJLJ_EXCEPTIONS
  45. bool
  46. prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
  47. default n
  48. help
  49. Use old setjump()/longjump() exceptions instead of the newer
  50. frame unwinding exceptions handling routines. Warning: increases
  51. code size and runtime memory usage.
  52. config INSTALL_LIBGCJ
  53. bool
  54. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  55. default n
  56. help
  57. Build/install java compiler and GNU classpath ?
  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 ?