Open AlexSurnov opened 4 months ago
I was in the same situation as you. I went here and followed the instructions: https://mac.r-project.org/openmp/
Basically, I typed the following two lines in the terminal: curl -O https://mac.r-project.org/openmp/openmp-14.0.6-darwin20-Release.tar.gz sudo tar fvxz openmp-14.0.6-darwin20-Release.tar.gz -C /
Thank you, @axitamm It's a useful link. Still, some users may be terrified by the warning header in that webpage.
Dear developers of FastPG, please consult me how to install your package. My problem is as follows. I have Mac OS Sonoma 14.5 and the intel core i9 CPU. When running
BiocManager::install("sararselitsky/FastPG")
, I receive the following error message.However, the omp.h file is there, and I can call it from gcc. For example, this code works:
gcc -Xpreprocessor -fopenmp ~/example.c -I /usr/local/Cellar/libomp/18.1.8/include -L /usr/local/Cellar/libomp/18.1.8/lib -lomp -o example.bin
I suspect that the installation command of FastPG cannot navigate to the directory containing openMP files in my computer. Specifically, it does not know that it should look in the folder/usr/local/Cellar/libomp/18.1.8
. Please tell me, whether there is a way to specify explicitly the location of omp.h during the installation?Thank you Alex