------- Comment #1 from burnus at gcc dot gnu dot org 2007-10-19 06:40 ------- > Whenever I invoke this compiler without specifying a cource file I get the > expected error message: > gfortran: no input files [...] > Whenever I invoke the compiler with a valid fortran source file I get the > error > message: > gfortran: error trying to exec 'f951': execvp: No such file or directive.
gfortran (and gcc, g++ etc.) are wrappers around the actual compiler. Seemingly, the wrapper "gfortran" cannot find the actual compiler; on my Linux system they are at: /usr/bin/gfortran /usr/lib64/gcc/x86_64-suse-linux/4.2.2/f951 You could try '-v', e.g. gfortran -v -c someFortranFile.f this gives more information, which might help. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33814