Mingw32 中是否支持 std::thread ?
可能的重复:
如何在 MinGW 中启用实验性 C++0x 并发功能?< /a>
我的 mingw32 版本(gcc 版本是 4.5.2)没有附带类 std::thread
。
是否有支持 std::thread
的 mingw32 版本?
Possible Duplicate:
How to enable experimental C++0x concurrency features in MinGW?
my version of mingw32 (gcc version is 4.5.2) does not come with the class std::thread
.
Is there a version of mingw32 which supports std::thread
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜 std::thread 来自 boost,所以你总是可以使用 boost,而且它带有很多可用的位
I guess that std::thread came from boost, so you can always use boost for that, plus it comes with lots of useable bits
Mingw32 过于保守,因为更新的编译器技术遵循 MinGW-w64,后者同时针对 32 位和 64 位架构。
http://mingw-w64.sourceforge.net/
它限制您使用 Cygwin 或 Linux 等。交叉编译时,MSYS 没有可用的选择。
Mingw32 is on the overly conservative side, for updated compiler technology follow MinGW-w64 which targets both 32-bit and 64-bit architectures.
http://mingw-w64.sourceforge.net/
It limits you to Cygwin or Linux et al. cross compiles, there isn't a choice available for MSYS.