Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29596 ディスカッション

Floating license - debugging code without compilation.

Kantor__Baruch
ビギナー
1,949件の閲覧回数

Hi,

I manage a large group of engineers maintaining C code that is relying on my Fortran core dll.

During debug session they need to inspect the values in the Fortran code but they seldom change and recompile it.

Can this be done while not holding the Fortran floating license token?

Thank you.

0 件の賞賛
1 解決策
Steve_Lionel
名誉コントリビューター III
1,949件の閲覧回数

Compiling is the only thing that grabs a token.

元の投稿で解決策を見る

4 返答(返信)
mecej4
名誉コントリビューター III
1,949件の閲覧回数

EXEs and DLLs produced by using Intel compilers do not check licenses. In other words, there are no run-time licenses. On the other hand, symbolic debugging of Fortran code requires additional integration components for Visual Studio that may not be available if a licensed copy of Intel Fortran has not been installed.

A suggestion is that the users place a breakpoint at each point in their C code where a Fortran DLL routine is about to be called. When such a breakpoint is reached, the values of the variables may be inspected. The author of the DLL would be responsible for placing code in the Fortran routine to check arguments for correctness.

Steve_Lionel
名誉コントリビューター III
1,949件の閲覧回数

As far as I know, debugging a DLL created by Intel Fortran doesn't require a license. You do need the PDB file (or have it embedded - maybe that is the default). However, Intel Fortran DLLs by default depend on the debug version of the run-time libraries (Fortran and C++), and these are not redistributable. Also, the Fortran debug support is part of the product install and thus you need a license for that.

Kantor__Baruch
ビギナー
1,949件の閲覧回数

Thank you for the answer.

Just to clarify, I do intend to buy floating licenses, just wanted to be sure that the less advanced users that do not change or compile the Fortran part can still work while the tokens are taken by others.

 

 

Steve_Lionel
名誉コントリビューター III
1,950件の閲覧回数

Compiling is the only thing that grabs a token.

返信