Config.in 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. # Choose gcc version.
  2. comment "Gcc Options"
  3. choice
  4. prompt "GCC compiler Version"
  5. default BR2_GCC_VERSION_3_4_2
  6. help
  7. Select the version of gcc you wish to use.
  8. config BR2_GCC_VERSION_3_3_5
  9. bool "gcc 3.3.5"
  10. config BR2_GCC_VERSION_3_3_6
  11. bool "gcc 3.3.6"
  12. config BR2_GCC_VERSION_3_4_2
  13. bool "gcc 3.4.2"
  14. config BR2_GCC_VERSION_3_4_3
  15. bool "gcc 3.4.3"
  16. config BR2_GCC_VERSION_3_4_4
  17. bool "gcc 3.4.4"
  18. config BR2_GCC_VERSION_3_4_5
  19. bool "gcc 3.4.5"
  20. config BR2_GCC_VERSION_4_0_0
  21. bool "gcc 4.0.0"
  22. config BR2_GCC_VERSION_4_0_1
  23. bool "gcc 4.0.1"
  24. config BR2_GCC_VERSION_4_0_2
  25. bool "gcc 4.0.2"
  26. config BR2_GCC_VERSION_4_1_0
  27. bool "gcc 4.1.0"
  28. endchoice
  29. config BR2_GCC_VERSION
  30. string
  31. default "3.3.5" if BR2_GCC_VERSION_3_3_5
  32. default "3.3.6" if BR2_GCC_VERSION_3_3_6
  33. default "3.4.2" if BR2_GCC_VERSION_3_4_2
  34. default "3.4.3" if BR2_GCC_VERSION_3_4_3
  35. default "3.4.4" if BR2_GCC_VERSION_3_4_4
  36. default "3.4.5" if BR2_GCC_VERSION_3_4_5
  37. default "4.0.0" if BR2_GCC_VERSION_4_0_0
  38. default "4.0.1" if BR2_GCC_VERSION_4_0_1
  39. default "4.0.2" if BR2_GCC_VERSION_4_0_2
  40. default "4.1.0" if BR2_GCC_VERSION_4_1_0
  41. config BR2_GCC_USE_SJLJ_EXCEPTIONS
  42. bool "Enable setjmp/longjmp exceptions?"
  43. default n
  44. help
  45. For some platforms, proper stack unwinding works perfectly,
  46. while other platforms must use setjmp/longjmp exceptions for
  47. proper stack unwinding during exception handling. Most people
  48. can leave this set to n.
  49. config BR2_EXTRA_GCC_CONFIG_OPTIONS
  50. string "Additional gcc options"
  51. default ""
  52. help
  53. Any additional gcc options you may want to include....
  54. config BR2_INSTALL_LIBSTDCPP
  55. bool "Build/install c++ compiler and libstdc++?"
  56. default n
  57. help
  58. Build/install c++ compiler and libstdc++?
  59. config BR2_INSTALL_LIBGCJ
  60. bool "Build/install java compiler and libgcj?"
  61. default n
  62. depends on BR2_INSTALL_LIBSTDCPP
  63. help
  64. Build/install java compiler and libgcj?
  65. config BR2_INSTALL_OBJC
  66. bool "Build/install Objective-C compiler and runtime?"
  67. default n
  68. help
  69. Build/install Objective-C compiler and runtime?