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

Avoid of libifcoremd.dll missing with static linking

Wagner__Urs
Novice
318 Views

Hello 

Is it possible to avoid 

Wagner__Urs_0-1670860635376.png

with a compiler flag. I mean static linking? I compile a Release executable.

The compiler flags are:

/nologo /Od /intconstant /Qsave /iface:cvf /module:"Release/" /object:"Release/" /Fd"Release\vc170.pdb" /check:bounds /libs:dll /threads /c

 

I am confused because I think libs:dll is static linking. So the libifcoremd.dll is static

linked.

Thanks for Your explanations.

0 Kudos
1 Reply
Steve_Lionel
Honored Contributor III
303 Views

You are mistaken: /libs:dll says to link to the dynamic (DLL) libraries. You want /libs:static instead.

0 Kudos
Reply