Reputation: 622
Currently I am developing a cross-plattform framework where I want to use actuall features of openmp. I would like to make use of the "new features" of openmp 3.0 (or later). (Such like unsigned parallel for loops or tasks etc., I haven't developed on a windows plattform for quite a while and as I have seen for now even Visual Studio 2015 does only support openmp 2.0 (At least when using msvc, see e.g. All OpenMP Tasks running on the same thread or https://blogs.msdn.microsoft.com/vcblog/2014/11/12/visual-studio-2015-preview-is-now-available/) So my questions are:
Thanks in advance
Upvotes: 2
Views: 3261
Reputation: 20130
Well, you might try GCC ports for Windows, native (mingw64) and on top of cygwin.
Try to install msys2 and you'll get ming64 as well as cygwin compilers with OpenMP support
Upvotes: 2