Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Choose gcc version.
  2. choice
  3. prompt "GCC compiler Version" if TOOLCHAINOPTS
  4. default GCC_VERSION_3_4_6 if LINUX_2_4
  5. default GCC_VERSION_4_2_0 if TARGET_magicbox
  6. default GCC_VERSION_4_2_3 if TARGET_avr32
  7. default GCC_VERSION_4_1_2
  8. help
  9. Select the version of gcc you wish to use.
  10. config GCC_VERSION_3_4_6
  11. bool "gcc 3.4.6"
  12. config GCC_VERSION_4_1_2
  13. depends !LINUX_2_4
  14. bool "gcc 4.1.2"
  15. config GCC_VERSION_4_2_0
  16. depends !LINUX_2_4
  17. bool "gcc 4.2.0"
  18. config GCC_VERSION_4_2_1
  19. depends !LINUX_2_4
  20. bool "gcc 4.2.1"
  21. config GCC_VERSION_4_2_2
  22. depends !LINUX_2_4
  23. bool "gcc 4.2.2"
  24. config GCC_VERSION_4_2_3
  25. depends !LINUX_2_4
  26. bool "gcc 4.2.3"
  27. config GCC_VERSION_4_2_4
  28. depends !LINUX_2_4
  29. bool "gcc 4.2.4"
  30. endchoice
  31. config EABI_SUPPORT
  32. bool
  33. depends arm||armeb
  34. prompt "Enable EABI support" if TOOLCHAINOPTS
  35. default n
  36. help
  37. Enable ARM EABI support
  38. config EXTRA_GCC_CONFIG_OPTIONS
  39. string
  40. prompt "Additional gcc options" if TOOLCHAINOPTS
  41. default ""
  42. help
  43. Any additional gcc options you may want to include....
  44. config INSTALL_LIBSTDCPP
  45. bool
  46. prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
  47. default y
  48. help
  49. Build/install c++ compiler and libstdc++?
  50. config INSTALL_LIBGCJ
  51. bool
  52. prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
  53. default n
  54. help
  55. Build/install java compiler and GNU classpath ?