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

intel-fortran and gcc 4.4.3 -> "f951" error

crivello__jean-claud
963 Views
Hi all,

I installed Intel-compiler fortran 12.x aka "Composer XE" on Ubuntu 10.10 64bits machine as it is explained on this indications.
the only difference is that I use a more recent gcc version (4.4.3).
but now, when I try to compile I have the following mistake:

$gcc: error trying to exec 'f951': execvp: No such file or directory

Does somebody have an idea ?
Thanks,
JC

0 Kudos
2 Replies
mecej4
Honored Contributor III
963 Views
You are probably using a makefile which thinks that the default compiler for Fortran should be a GNU compiler.

Run Make from the IFort environment, or try to build a simple Fortran program without using Make from the same environment.
0 Kudos
TimP
Honored Contributor III
963 Views
You don't need a gfortran installation to use ifort. If you ask gcc (which you do need) to compile a Fortran source file, it will look for gfortran.
The ifort installation doesn't change anything in the gcc installation. As already mentioned, you would use ifort command (with ifort environment variables set) to start the ifort compiler.
0 Kudos
Reply