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
4,261件の閲覧回数

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
4,261件の閲覧回数

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

andrew_4619
名誉コントリビューター III
4,261件の閲覧回数

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.

SameerM
ビギナー
4,130件の閲覧回数

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 

DavidWhite
高評価コントリビューター II
4,113件の閲覧回数

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.

JulieMarieC
初心者
3,420件の閲覧回数

Hello,

 

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

 

Thanks,

 

Julie

Arjen_Markus
名誉コントリビューター II
3,402件の閲覧回数

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.

返信