std::thread in Dev C++ 5.5.3

Mar 25, 2014 at 7:48pm
When I insert a thread in my code...the compiler reports me an error:
"'thread' is not a member of std".

I alredy activated the standard language -std=c++0x in the options..
Mar 25, 2014 at 7:58pm
it sounds like you might want to upgrade your compiler.
Mar 25, 2014 at 10:31pm
Also, on windows, only some toolchains actually have thread support at all (Win32 threads isn't supported, you need POSIX threading for MinGW, for example). A good compiler that does support threading is TDM-GCC (>= 4.8).
Mar 26, 2014 at 8:15pm
i try to use the header ptrhead.h for create many threads...but the linker reports me this:
undefined reference to `__imp_pthread_create'... how to fix it?
Topic archived. No new replies allowed.