multithreading - C++11 threading on Windows -
is there anyway use std::thread c++11 standard library in windows when compiling g++ 4.5.2 in mingw?
i'm gunna assume no i've seen many things saying have compile pthreads option figure i'd ask anyway.
there experimental support std::thread in mingw-w64 toolchains.
specifically, gcc 4.6 builds provide usable std::thread through mingw-w64's winpthreads library.
you can find downloads here:
apart that, msvc11 (visual studio 2012) has <thread>, <chrono>, , <atomic>. can download express edition here.
Comments
Post a Comment