Config.in 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Choose gcc version.
  2. # WARNING -- 2.95 currently only builds for i386, arm, mips*, and powerpc.
  3. # WARNING -- 2.95 does not currently build natively for the target.
  4. comment "Gcc Options"
  5. choice
  6. prompt "GCC compiler Version"
  7. default BR2_GCC_VERSION_3_4_2
  8. help
  9. Select the version of gcc you wish to use.
  10. config BR2_GCC_VERSION_2_95
  11. bool "gcc 2.95"
  12. depends on BR2_arm || BR2_i386 || BR2_mips || BR2_powerpc
  13. config BR2_GCC_VERSION_3_3_3
  14. bool "gcc 3.3.3"
  15. config BR2_GCC_VERSION_3_3_4
  16. bool "gcc 3.3.4"
  17. config BR2_GCC_VERSION_3_3_5
  18. bool "gcc 3.3.5"
  19. config BR2_GCC_VERSION_3_4_0
  20. bool "gcc 3.4.0"
  21. config BR2_GCC_VERSION_3_4_1
  22. bool "gcc 3.4.1"
  23. config BR2_GCC_VERSION_3_4_2
  24. bool "gcc 3.4.2"
  25. config BR2_GCC_VERSION_3_4_3
  26. bool "gcc 3.4.3"
  27. endchoice
  28. config BR2_GCC_VERSION
  29. string
  30. default "2.95" if BR2_GCC_VERSION_2_95
  31. default "3.3.3" if BR2_GCC_VERSION_3_3_3
  32. default "3.3.4" if BR2_GCC_VERSION_3_3_4
  33. default "3.3.5" if BR2_GCC_VERSION_3_3_5
  34. default "3.4.0" if BR2_GCC_VERSION_3_4_0
  35. default "3.4.1" if BR2_GCC_VERSION_3_4_1
  36. default "3.4.2" if BR2_GCC_VERSION_3_4_2
  37. default "3.4.3" if BR2_GCC_VERSION_3_4_3
  38. config BR2_GCC_USE_SJLJ_EXCEPTIONS
  39. string
  40. default "--enable-sjlj-exceptions"
  41. help
  42. Currently the unwind stuff seems to work for staticly linked apps
  43. but not dynamic. So use setjmp/longjmp exceptions by default.
  44. config BR2_EXTRA_GCC_CONFIG_OPTIONS
  45. string "Additional gcc options"
  46. default ""
  47. help
  48. Any additional gcc options you may want to include....
  49. config BR2_INSTALL_LIBSTDCPP
  50. bool "Build/install c++ compiler and libstdc++?"
  51. default n
  52. help
  53. Build/install c++ compiler and libstdc++?
  54. config BR2_INSTALL_LIBGCJ
  55. bool "Build/install java compiler and libgcj?"
  56. default n
  57. depends on BR2_INSTALL_LIBSTDCPP
  58. help
  59. Build/install java compiler and libgcj?
  60. config BR2_INSTALL_OBJC
  61. bool "Build/install Objective-C compiler and runtime?"
  62. default n
  63. help
  64. Build/install Objective-C compiler and runtime?