I am using Fedora 7 with all of the updates applied.  This is an AMD Athelon  computer.  The following is about the simplest Fortran program possible.  <br><br>      program main<br>      end<br><br>I get the following error result:<br><br>[howard@localhost ProgramTesting]$ gcc -v xsimple.f<br>Using built-in specs.<br>Target: i386-redhat-linux<br>Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --with-cpu=generic --host=i386-redhat-linux<br>Thread model:
 posix<br>gcc version 4.1.2 20070925 (Red Hat 4.1.2-27)<br> /usr/libexec/gcc/i386-redhat-linux/4.1.2/f951 xsimple.f -ffixed-form -quiet -dumpbase xsimple.f -mtune=generic -auxbase xsimple -version -I /usr/lib/gcc/i386-redhat-linux/4.1.2/finclude -o /tmp/ccxbGe9M.s<br>GNU F95 version 4.1.2 20070925 (Red Hat 4.1.2-27) (i386-redhat-linux)<br>        compiled by GNU C version 4.1.2 20070925 (Red Hat 4.1.2-27).<br>GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072<br> as -V -Qy -o /tmp/ccyJUofp.o /tmp/ccxbGe9M.s<br>GNU assembler version 2.17.50.0.12-4 (i386-redhat-linux) using BFD version 2.17.50.0.12-4 20070128<br> /usr/libexec/gcc/i386-redhat-linux/4.1.2/collect2 --eh-frame-hdr -m elf_i386 --hash-style=gnu -dynamic-linker /lib/ld-linux.so.2 /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../crt1.o /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../crti.o /usr/lib/gcc/i386-redhat-linux/4.1.2/crtbegin.o
 -L/usr/lib/gcc/i386-redhat-linux/4.1.2 -L/usr/lib/gcc/i386-redhat-linux/4.1.2 -L/usr/lib/gcc/i386-redhat-linux/4.1.2/../../.. /tmp/ccyJUofp.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i386-redhat-linux/4.1.2/crtend.o /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../crtn.o<br>/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../crt1.o: In function `_start':<br>(.text+0x18): undefined reference to `main'<br>/tmp/ccyJUofp.o: In function `MAIN__':<br>xsimple.f:(.text+0x1e): undefined reference to `_gfortran_set_std'<br>collect2: ld returned 1 exit status<br>[howard@localhost ProgramTesting]$ <br><br>The third to the last line has an undefined reference and I don't know how to resolve it.<br><br>Any help would be appreciated.<br><br>Howard<br><br><br>