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 have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.

How to connect ifort to a 'gfortran' lib

Peng__Jerry
Beginner
877 Views

Hi:

   sorry for the disturbing.

   Now I compile all my ocean model with the help of ifort, but I also need to use the NCL static lib which compiled by gfortran. it always said that "undefined reference to MAIN__"

   What should I do now? Thanks for your help.

Best Regards

0 Kudos
2 Replies
Juergen_R_R
Valued Contributor II
877 Views

This usually means that you compile a module as if it were a main program. Without code and compile or link command nothing else to add.

0 Kudos
Steve_Lionel
Honored Contributor III
877 Views

You can't do this - it won't work. In general, you must recompile all sources using a single Fortran compiler. Objects and libraries from one Fortran compiler don't work with those from another.

0 Kudos
Reply