Whats the difference between thread_posixs and thread_win32 in gcc port of windows?

删除回忆录丶 提交于 2019-11-28 21:35:32

So, the link you provided leads to builds of the standalone gcc 4.7.2 for windows, a.k.a mingw64. In order to build this compiler, a set of scripts are used, which help define the options of compilations. The scripts are simply called MinGW-builds, and can be found in different places:

The scripts have an option which specify which thread model is to be used for the std::threads part of the C++11 standard (this is allowed for MinGW thanks to an experimental patch applied on that version of GCC). In one case, the win32 thread API is used, and in the other case it's the posix API which is used.

Note that Windows doesn't support all the POSIX API out of the box, so some external emulation library needs to be used (winpthreads).

The GCC source configure script has an option to specify that API (--enable-threads=), and that's what is used in the build scripts.

In short, for this version of mingw, the threads-posix release will use the posix API and allow the use of std::thread, and the threads-win32 will use the win32 API, and disable the std::thread part of the standard.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!