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

Not compiling a .lib file

ryan_prather
Beginner
405 Views

I have created a DLL in FORTRAN 90. When it built it went just fine. Compiled the dll, lib, and obj files. I was able to call it from a C++ program and it worked great. I went to do it again, and it just won't compile the lib file. It does the dll and obj files, but not the lib. I, of course, need the lib to link to the C++ so I can get it to work. I went to the project properties for both projects and they were the exact same. I didn't change anything on the first one...it was all default values so I did the same thing on the second one and it didn't work. Any ideas please!

Ryan

0 Kudos
1 Reply
Steven_L_Intel1
Employee
405 Views
The compiler is not seeing a DLLEXPORT directive for the routine. Sometimes this is due to a typo or in fixed-form source because the line is too long.
0 Kudos
Reply