<div dir="ltr">On macOS, I have to use compiler options to find libomp, can they be removed and we can use pkg-config from Homebrew that should be able to do it automatically? The reason for this is because Apple Clang does not come with the OpenMP specification – however, other compilers such as LLVM and GCC do.<br><br>I tried doing `pkg-config --exists --print-errors libomp` but it throws errors:<br><br>```<br>Package libomp was not found in the pkg-config search path.<br>Perhaps you should add the directory containing `libomp.pc'<br>to the PKG_CONFIG_PATH environment variable<br>No package 'libomp' found<br>```<br>But with `clang -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -o test test.c`<br>I'm able to compile successfully!<br></div>