We're unable to build a sample application from a generated SDK that uses the SPP or OMP headers. See Yocto Project defect 7141.
test.c:
#include <omp.h>
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}
Compile from an SDK using:
(. environment-setup-core2-64-wrs-linux ; $CC -fopenmp -o test test.c)
This results in 'omp.h' can't be found.