I would like to compile my c++11 project (recently moved to c++11) with MinGW. And I have compiling errors about c++11 code like \"std::thread not found\".
I used the la
MinGW mostly does not have a port of glibc which supports pthreading or gthreading like in GCC.
For solving this, the first solution can be installing library of thread headers. The other solution can be working with GCC compiler.