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

ifport module raise EOF error message

GUÉNET__Thomas
Beginner
735 Views

Hello,

In my fortran code, I am using ifport module (`use ifport`); but I get the following error message when compiling with GCC-6.3.0:

        Fatal Error: Reading module 'ifport' at line 1 column 2: Unexpected EOF

I have installed intel composer_xe_2013_sp1.5.212. My linux os is debian 9. Is there anyway to solve this ? 

Why don't I use ifort ? Because sometimes when I compile my code I can't access my license manager server.

Best regards

Thomas

0 Kudos
2 Replies
Steve_Lionel
Honored Contributor III
735 Views

Module ifport is provided only by Intel Fortran and is usable only by Intel Fortran. Modules compiled by one compiler can't be used by another.

gfortran probably provides some or all of the routines you're using from ifport, made available some other way - look in its documentation for details.

If you need help with licensing, you'll need to submit a request at https://supporttickets.intel.com/?lang=en-US

0 Kudos
GUÉNET__Thomas
Beginner
735 Views

I understood, ifport is used to make some subroutine portable to or from windows to other platforme. In my case I just did not need it for linux hence, I surrounded the call of the module by

#ifdef _WIN32
    use ifport
#endif

to make it compilable on both platforms.

Best,

0 Kudos
Reply