Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29282 Discussions

warning #11077: locally defined symbol imported

netphilou31
New Contributor III
564 Views

Dear all,

I am using VS2005 + IVF Compiler XE 12.1.1.258 [IA-32].

I have a function called MABP located in a dll with the dllexport attribute. I want to use that function from inside the dll (in the routine called MeABP which is also exported from the dll). I have added the declaration statement of the routine (because it uses the stdcall calling convention) and I get the following warning message during the linking step:

warning #11077: MeABP.obj: locally defined symbol __imp_MABP imported

I understand what the message is saying but I was wondering if it was due to a bad programing or just a normal warning message that I can dismiss ?

Best regards,

0 Kudos
2 Replies
Steven_L_Intel1
Employee
564 Views
It's normal - ignore it, You'll get this warning when building a DLL where you USE a module from elsewhere in the DLL that DLLEXPORTs one of its symbols.
0 Kudos
netphilou31
New Contributor III
564 Views
Many thanks steve

Best regards,
0 Kudos
Reply