Config.in 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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_1_1
  40. depends !BR2_nios2
  41. bool "gcc 4.1.1"
  42. config BR2_GCC_VERSION_4_2
  43. depends !BR2_nios2
  44. select BR2_GCC_IS_SNAP
  45. bool "gcc 4.2"
  46. endchoice
  47. config BR2_GCC_IS_SNAP
  48. bool
  49. default n
  50. config BR2_GCC_SNAP_DATE
  51. string "GCC snapshot date"
  52. default "20060408"
  53. depends BR2_GCC_IS_SNAP
  54. help
  55. Enter snapshot date to use for gcc. Format is:
  56. YYYYMMDD
  57. config BR2_GCC_VERSION
  58. string
  59. default "3.3.5" if BR2_GCC_VERSION_3_3_5
  60. default "3.3.6" if BR2_GCC_VERSION_3_3_6
  61. default "3.4.2" if BR2_GCC_VERSION_3_4_2
  62. default "3.4.3" if BR2_GCC_VERSION_3_4_3
  63. default "3.4.4" if BR2_GCC_VERSION_3_4_4
  64. default "3.4.5" if BR2_GCC_VERSION_3_4_5
  65. default "3.4.6" if BR2_GCC_VERSION_3_4_6
  66. default "4.0.0" if BR2_GCC_VERSION_4_0_0
  67. default "4.0.1" if BR2_GCC_VERSION_4_0_1
  68. default "4.0.2" if BR2_GCC_VERSION_4_0_2
  69. default "4.0.3" if BR2_GCC_VERSION_4_0_3
  70. default "4.1.0" if BR2_GCC_VERSION_4_1_0
  71. default "4.1.1" if BR2_GCC_VERSION_4_1_1
  72. default "4.2" if BR2_GCC_VERSION_4_2
  73. config BR2_GCC_USE_SJLJ_EXCEPTIONS
  74. bool "Enable setjmp/longjmp exceptions?"
  75. default n
  76. help
  77. For some platforms, proper stack unwinding works perfectly,
  78. while other platforms must use setjmp/longjmp exceptions for
  79. proper stack unwinding during exception handling. Most people
  80. can leave this set to n.
  81. config BR2_EXTRA_GCC_CONFIG_OPTIONS
  82. string "Additional gcc options"
  83. default ""
  84. help
  85. Any additional gcc options you may want to include....
  86. config BR2_INSTALL_LIBSTDCPP
  87. bool "Build/install c++ compiler and libstdc++?"
  88. default n
  89. select BR2_LARGEFILE
  90. help
  91. Build/install c++ compiler and libstdc++?
  92. config BR2_INSTALL_LIBGCJ
  93. bool "Build/install java compiler and libgcj?"
  94. default n
  95. depends on BR2_INSTALL_LIBSTDCPP
  96. help
  97. Build/install java compiler and libgcj?
  98. config BR2_INSTALL_OBJC
  99. bool "Build/install Objective-C compiler and runtime?"
  100. default n
  101. help
  102. Build/install Objective-C compiler and runtime?