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

How to connect ifort to a 'gfortran' lib

Peng__Jerry
Beginner
368 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 I
368 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
368 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