3

我尝试在 linux for windows 上使用 mingw 交叉编译一些 c++11 源代码。该代码使用 std::thread。

当我编译时,我总是得到一些错误:

$ ../mingw/cross/bin/i686-w64-mingw32-g++  -std=c++11 -I include/ test.cpp -lstdthread -otest
In file included from test.cpp:4:0:
...
error: 'thread' in namespace 'std' does not name a type
...

我可以在 mingw 中启用 c++11 线程吗?使用本地 g++ 编译代码没有任何问题。

谢谢,

问候凯文

-编辑-

我刚刚在互联网的某个地方下载了 mingw,因为我试图获得尽可能新的版本:

../mingw/cross/bin/i686-w64-mingw32-g++  -v
Using built-in specs.
COLLECT_GCC=../mingw/cross/bin/i686-w64-mingw32-g++
COLLECT_LTO_WRAPPER=/home/bmeier/source/mingw/cross/bin/../libexec/gcc/i686-w64-mingw32/4.8.1/lto-wrapper
Target: i686-w64-mingw32
Configured with: /home/drangon/work/mingw-w64-dgn_32/source/gcc-4.8.1/configure --target=i686-w64-mingw32 --disable-nls --disable-multilib --with-gmp=/home/drangon/work/mingw-w64-dgn_32/build/for_cross --with-mpfr=/home/drangon/work/mingw-w64-dgn_32/build/for_cross --with-mpc=/home/drangon/work/mingw-w64-dgn_32/build/for_cross --with-isl=/home/drangon/work/mingw-w64-dgn_32/build/for_cross --with-cloog=/home/drangon/work/mingw-w64-dgn_32/build/for_cross --enable-languages=c,c++,objc,obj-c++ --disable-libstdcxx-pch --prefix=/home/drangon/work/mingw-w64-dgn_32/cross --with-sysroot=/home/drangon/work/mingw-w64-dgn_32/cross
Thread model: win32
gcc version 4.8.1 (GCC)

问候凯文

4

3 回答 3

2

已经有 std::thread 和同步原语的本机实现,适用于任何 C++11 版本的 MinGW: https ://github.com/meganz/mingw-std-threads

于 2014-12-11T11:21:40.853 回答
1

基本上 MinGW 不支持 windows 上的线程,请参阅以下链接:http ://www.cplusplus.com/forum/windows/82461/

特别是 _GLIBCXX_HAS_GTHREADS 没有定义,头线程中的类线程需要它。(它建立在 gthreads 上)。

您应该尝试将 boost::thread 用于与 win/linux 兼容的线程类

于 2013-10-29T20:23:24.867 回答
-1

很可能您可能忘记包含线程标题#include <thread>

于 2013-09-23T12:58:03.320 回答