Config.in 2.5 KB

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