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

COFF-OMF Problem calling CVF from Builder 5.5

castor2
Beginner
360 Views
CVFcompiles my FORTAN function to aDLL, LIB or OBJ, but I can't open them from Builder (no problem calling from VC++). Builder says it's a COFF-OMFrelated incompatibility problem, butCOFF2OMF generates very small (1 K vs 150K)files and they don't seem to work in Builder.
Anyone can help.
Thanks.
0 Kudos
1 Reply
Jugoslav_Dujic
Valued Contributor II
360 Views
AFAIK Coff2Omf and similar utilities are able to convert only dll import libraries -- not real object libraries. Thus, about the only thing you can do is to use Fortran dll.
I'm not familiar with BC++ Builder, but Delphican call Dll functions pretty seamlessly, without import library, e.g.
function DMS_EndSendData(): DMSERR;
stdcall; external 'dmsapp.dll' name
'_DMS_EndSendData@0';
is there something similar in C++ Builder too?
Jugoslav
0 Kudos
Reply