Given Microsoft FORTRAN 5.1 and Microsoft C/C++ 14.0, along with the linker that comes with that version of FORTRAN (that must be used for other dependencies) how do I create a C function and call it from the FORTRAN application?
|
|
You have two choices. FORTRAN
C/C++
This works w/gcc toolchain. You'll have to dumpbin on the DLL and fortran object code to see if the names match up correctly.
FORTRAN
C/C++
COMPILE COMMAND
Hope this helps |
|||
|
|
|
|
Maybe better late than never. I remember using ms fortran 5.1 with visual studio 1. I am not sure which visual studio 14.0 is equivalent to but I think it is relatively recent and not 13 years old. I think this combination is a non starter as 5.1 is a 16bit compiler for windows 3. |
||
|
|
|
|
There's an article on MSDN with sample code here: FORTRAN calls to C |
||
|
|
