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

Re: link warning

Steven_L_Intel1
Employee
428 Views
It's benign. It's telling you that the linker figured out that it didn't need to reference OLEAUT32.DLL after all (something pulled it in), so it discarded the reference. It's really just for your information.

Steve
0 Kudos
1 Reply
Steven_L_Intel1
Employee
428 Views
I don't profess to fully understand this message, but I have encountered it before. I don't think you'll find am actual call in your code. The reference to the DLL is most likely coming from one of a couple of places:

1) Settings..Link..Libraries/object modules, OLEAUT32.LIB listed
2) A USE OLEAUT32 in your code (I had thought perhaps USE DFWIN would pull this in, but it seems not.)

The simplest solution is to add OLEAUT32.LIB to the list of libraries to be ignored in the Link settings tab.

Steve
0 Kudos
Reply