I am having some issues after installing the MKL library on my Linux Intel machine (Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz). When I run cmake, I get the following error:
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:90 ] _MKL_TEST_VERSIONS = 2011
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:92 ] MKL_ADDITIONAL_VERSIONS =
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:94 ] MKL_USE_STATIC_LIBS =
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:96 ] MKL_ROOT = /opt/intel/oneapi/mkl/2022.0.2
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:98 ] INTEL_ROOT =
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:117 ] _MKL_ROOT_SEARCH_DIRS = /opt/intel/oneapi/mkl/2022.0.2;/opt/intel/composerxe-2011/mkl
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:130 ] location of mkl.h: /opt/intel/oneapi/mkl/2022.0.2/include/mkl.h
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:158 ] _INTEL_LIBRARY_DIR_SUFFIXES = lib;lib/intel64
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:160 ] _MKL_LIBRARY_SEARCH_DIRS = /opt/intel/oneapi/mkl/2022.0.2;/opt/intel/composerxe-2011/mkl;/opt/intel/oneapi/mkl/2022.0.2/include/..
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:205 ] Found mkl_rt: /opt/intel/oneapi/mkl/2022.0.2/lib/intel64/libmkl_rt.so
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:227 ] _INTEL_LIBRARY_SEARCH_DIRS = /compiler;/opt/intel/oneapi/mkl/2022.0.2/..;/opt/intel/oneapi/mkl/2022.0.2/../compiler;/opt/intel/composerxe-2011/mkl/..;/opt/intel/composerxe-2011/mkl/../compiler
[ /home/278926k/GSM/molecularGSM/cmake/FindMKL.cmake:313 ] MKL not found - the following libraries are missing: IOMP5;MATH
CMake Error at cmake/FindMKL.cmake:330 (message):
Intel(R) MKL could not be found.
Call Stack (most recent call first):
GSM/CMakeLists.txt:69 (find_package)
Section referred to in FindMKL.cmake:
set(MKL_FOUND TRUE)
if (NOT MKL_INCLUDE_DIR)
set(MKL_FOUND FALSE)
if (MKL_FIND_DEBUG)
message(STATUS "[ ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE} ] "
"MKL not found - MKL_INCLUDE_DIR was empty")
endif()
elseif (_MKL_MISSING_LIBRARIES)
set(MKL_FOUND FALSE)
if (MKL_FIND_DEBUG)
message(STATUS "[ ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE} ] "
"MKL not found - the following libraries are missing: "
"${_MKL_MISSING_LIBRARIES}")
endif()
endif()
if (MKL_FOUND)
if (NOT MKL_FIND_QUIETLY OR MKL_FIND_DEBUG)
message(STATUS
"Intel(R) MKL was found:\n"
" MKL_INCLUDE_DIRS: ${MKL_INCLUDE_DIRS}\n"
" MKL_LIBRARY_DIRS: ${MKL_LIBRARY_DIRS}\n"
" MKL_LIBRARIES: ${MKL_LIBRARIES}"
)
endif()
else()
if (MKL_FIND_REQUIRED)
message(SEND_ERROR "Intel(R) MKL could not be found.")
else()
message(STATUS "Intel(R) MKL could not be found.")
endif()
endif()
I am missing the IOMP5 and MATH libraries. Would this be an environment variable or installation issue on my end (e.g. I did not select the right options). Been at this for hours, still reading up on it, but posting here for help from those experienced with using MKL.

