gfortran.org
g77
If for some reason you do not want to use gfortran to compile your
fortran code, there is still g77.
g77 was an excellent fortran-77 compiler that was part of gcc prior to
gcc version 4.0. g77 had (and still does have) a reputation for being
able to accept almost any fortran variant ever created.
g77 binaries are still avaliable. as is the source, since gcc/g77 is
licensed under the gpl.
Fedora Users
Running Fedora Linux ? g77 is easily available by:
yum install compat-gcc-34-g77
Build It Yourself
The last release in the gcc3.4 series (3.4.6) was on March 6th, 2006.
Can you still build g77 from source code ?
Let's give it a try:
wget http://gcc.releasenotes.org/releases/gcc-3.4.6/gcc-3.4.6.tar.gz
tar xvzf gcc-3.4.6.tar.gz
mkdir bin
mkdir run
cd bin
../gcc-3.4.6/configure --enable-languages=c,f77 --disable-checking --prefix=/home/bdavis/g77/run
make CC=/usr/bin/gcc
make install
bdavis@bdavis-desktop:~/g77$ cat a.f
print*,'hello'
end
bdavis@bdavis-desktop:~/g77$ /home/bdavis/g77/run/bin/g77 -static a.f
bdavis@bdavis-desktop:~/g77$ ./a.out
hello
So, it looks like if you really want g77, you can make it yourself 2
years later.
UPDATE 06/01/2010. Still works. If you want g77, you can get it.
On this site
Contact
bdavis9659@sbcglobal.net