I’m trying to compile OpenMP C programs, but gcc always responds with
~> gcc -Wall -o openmp_test openmp_test.c
openmp_test.c:2:10: fatal error: openmp.h: No such file or directory
2 | #include "openmp.h"
| ^~~~~~~~~~
compilation terminated.
I tried to find the RPM packages which contain the OpenMP C headers, but so far no luck. These packages which relate to OpenMP are installed on my system:
I’m not looking for MPI (Message Passing Interface) for distributed computing, but OpenMP (presumably for Open Multi-Processing), a multi-threading API and library.