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

error during compiler in linux

Sajjad1989
Beginner
295 Views

Hi guys.

I'm trying to run a CPFE simulation on Linux and I keep getting the following error:

ifort: command line remark #10148: option '-i-dynamic' not supported.

I'm beginner and I don't know how to fix this. Anyone can help?

Sajjad

0 Kudos
1 Reply
mecej4
Honored Contributor III
246 Views

You are probably using an old makefile in which a compiler option is used that is no longer provided with the current Intel compiler Look up the compiler options and select the one(s) that is/are appropriate. You probably need -shared-intel .

Note, in addition, that the compiler issued only a warning message, stating that it ignored an option that it did not recognize; it went ahead and compiled the code. If the resulting program runs fine, you may simply remove that option from the makefile.

On the other hand, the generated code may not have the properties that were expected to be produced by specifying the unrecognized option.

Reply