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

Entry Point Not Found

cmc
新分销商 I
3,414 次查看

Hi,

I have a code which is compiled in Visual Studio Enterprise 2017 v15.8.9 using Intel Parallel Studio XE 2017 Update 4 Composer Edition for Fortran. This works perfectly fine.

On a different computer, I have recently installed Visual Studio 2019 and Intel Parallel Studio XE 2020 Composer Edition for Fortran. With the exact same code, I get the following error when trying to access the DLL:

Entry Point Not Found
The procedure entry point pow2o3 could not be located in the dynamic link library C:\path...

Any ideas?

Cheers,
Carl

0 项奖励
6 回复数
cmc
新分销商 I
3,414 次查看

Update:

I installed Visual Studio 2017 and Intel Parallel Studio XE 2017 Update 8 Composer Edition for Fortran on the other computer and then it worked. Is there a bug in the new compiler?

\Carl

0 项奖励
andrew_4619
名誉分销商 III
3,414 次查看

I would first compare the output of the buildlogs to see what options are different. A dumpbin of the dll's to see what entry points are defined might also tell you something.

0 项奖励
SameerM
初学者
3,283 次查看

I got a similar error when I compiled my program with VS 2019 and Parallel Studio 2019. I found that the problem was because another program that I had installed had place the Intel Fortran runtime libraries in my C:\Windows\System32 directory. These libraries were from a previous version of Intel Fortran. Fortunately I no longer needed the other program and I uninstalled it which removed these libraries. Then my program compiled from VS2019 started working without this kind of error. The error I was getting referred to the 'pow2o3f' entry point. I believe both of these are in the math library libmmd.dll 

0 项奖励
DavidWhite
重要分销商 II
3,266 次查看

If you build your DLL using the /static option, then the dependent libraries will be included in your DLL.

This will make your DLL larger, but then it can be used on any machine without needing the extra libraries to be installed.

0 项奖励
JulieMarieC
新手
2,573 次查看

Hello,

 

I get the same error: do you find any solution?

 

Thanks,

 

Julie

0 项奖励
Arjen_Markus
名誉分销商 II
2,555 次查看

Please do not re-use an old thread like this- the previous post was more than two years ago. It is confusing. Create a new one and do specify what entry point is missing. That is important information, the error message may look the same, but if it is another entry point, the solution will likely be different.

0 项奖励
回复