I'm building a custom Intel MKL DLL (2019 Update 2) using the following command:
nmake libintel64 MKLROOT="C:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\mkl" name=win\intel64\custom_mkl interface="lp64"
Using dumpbin I can see the the custom_mkl.dll depends on MSVCR120.DLL and libiomp5md.dll. The second dll seems to be ok and has to redistributed as well.
Is it possible to build a custom Intel MKL DLL which doesn't depend on MSVCR120.DLL?
I saw that there is a crt = <c run-time library> parameter but I don't know if this could help.
I cannot directly use the /MT option with the above command.