MinGW 4.8.1 C++11 thread support

前端 未结 2 773
情深已故
情深已故 2020-12-11 01:07

I downloaded the version of MinGW from the official website: http://sourceforge.net/projects/mingw/files/ and installed it on my Windows 7 machine.

Running g++

2条回答
  •  误落风尘
    2020-12-11 01:35

    There is already a native win32 implementation of std::thread and sync primitives: https://github.com/meganz/mingw-std-threads It is a header-only library and should work with any C++11 compliant version of MinGW.

提交回复
热议问题