Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29274 Discussions

Problems with execute my executable file, with libiomp5md.dll

felipin85
Beginner
1,001 Views
Hi everybody, I have a problem with the execute of a executable file. I'm using mkl_dss in my code. In the computer where I compile don't problem. The system is a Quad. But, in the system:

Intel Core Duo CPU
P8600@2.40Ghz
2.22 Ggz,3.18 Gb RAM

And other with one core, I get the following message:

No se encontr libiomp5md.dll

translate.... Libiomp5md.dll not found


I have select /O3 optimization and the following libraries: mkl_intel_c.lib, mkl_intel_thread.lib, mkl_core.lib, libiomp5md.lib


I add the project in VisualStudio, thanks for your help
0 Kudos
1 Solution
Steven_L_Intel1
Employee
1,001 Views
You need to have libiomp5md.dll on the target system - it can be in the same folder as the EXE. Or you can install the Intel compilers redistributable package there, but I think that is overkill for just this.

You can also link to libiomp5mt.lib insteasd, which is the static library, and this is probably ok in your case even though our OpenMP developers would prefer you use the DLL (more of an issue where you might be mixing code that has been compiled separately - MKL doesn't count here.)

View solution in original post

0 Kudos
2 Replies
Steven_L_Intel1
Employee
1,002 Views
You need to have libiomp5md.dll on the target system - it can be in the same folder as the EXE. Or you can install the Intel compilers redistributable package there, but I think that is overkill for just this.

You can also link to libiomp5mt.lib insteasd, which is the static library, and this is probably ok in your case even though our OpenMP developers would prefer you use the DLL (more of an issue where you might be mixing code that has been compiled separately - MKL doesn't count here.)
0 Kudos
felipin85
Beginner
1,001 Views
This is great! Thanks for your help, the system work ok! Thanks

Regards
0 Kudos
Reply