C++ Debug builds broke in Snow Leopard Xcode

后端 未结 3 1455
日久生厌
日久生厌 2020-12-03 08:33

After upgrading to Xcode 3.2 and Snow Leopard, my debug builds are broken and fail at runtime. Stringstreams do not seem to work. They work in Release mode.

I\'ve

3条回答
  •  离开以前
    2020-12-03 09:33

    STL debug mode is not supported in gcc 4.2 at this time. You can use gcc 4.0 with STL debug mode, or remove the debug mode preprocessor macros from your Debug configuration and keep using gcc 4.2.

提交回复
热议问题