At login the startup scripts should have these declarations (for
tcsh):
setenv VENDOR Linux
setenv CPPOPT "-DUNIX -DALEPH_LINUX -I${ALINC}"
setenv FCOPT "-c -O -fno-automatic -fdollar-ok -fno-backslash $CPPOPT"
setenv FC g77
setenv CCOPT " -c -O -DALEPH_C -I${ALINC}"
You might want to add -ffloat-store to
FCOPT as well. This helps programs that relies on IEEE
conformance by lowering the precision at some cost in speed. The option
is effective when the FPU is set to extended precision (default). It
also ensures that the output is the same whith and without
optimization.