The error message in eclipse:
[my program]: /usr/lib/x86_64-linux-gnu/libgomp.so.1: version `GOMP_4.0' not found (required by [my program])
From other posts I read that a newer version of gcc is required to enable OpenMP 4.0 support (yes, I really need it) so I downloaded and built gcc 6.1 on my Linux Mint machine. gcc --version now spits out 6.1.
After the installation, the warning message at "#pragma omp simd" disappeared, so I assume the installation was successful. But as soon as I insert "#pragma omp parallel for" into my code I get the error message. The code is correct, it runs in Visual Studio (withoutthe simd pragma).
Do I need to install something else?
Is there something else I did wrong?
(If someone knows an easy way to use OpenMP 4.0 on the Windows platform, this would be nice, too (preferably with Visual Studio))