我正在尝试为Windows交叉编译一个简单的应用程序:

#include <thread>

void Func(){
  return;
}

int main(){
  std::thread thr1(Func);
  thr1.detach();
  return 0;
}

这就是我得到的:
$ i686-w64-mingw32-g++ -static-libstdc++ -static-libgcc -pipe -g -std=c++0x ./threadstutor.cpp
./threadstutor.cpp: In function ‘int main()’:
./threadstutor.cpp:8:3: error: ‘thread’ is not a member of ‘std’
./threadstutor.cpp:8:15: error: expected ‘;’ before ‘thr1’
./threadstutor.cpp:9:3: error: ‘thr1’ was not declared in this scope

实际上,如果使用Ubuntu的g++进行编译,则此代码不会出现此类问题。但是我需要针对Windows进行交叉编译,这很困难。

最佳答案

此错误意味着您使用的STL不包含C++ 11的所有功能。

要在Windows中访问C++ 11线程,您将需要使用posix-threads构建Mingw。在这里您可以找到Mingw-Builds v4.8.1:http://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.8.1/64-bit/threads-posix/sjlj/

关于c++ - MinGW错误: ‘thread’ is not a member of ‘std’ ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21211980/

10-12 22:34