The old g77 FORTRAN compiler of GCC which has been replaced by gfortran since release 4.0.

learn more… | top users | synonyms

1
vote
0answers
30 views

f77 code in gfortran - library call

I've inherited an old f77/g77 program from a previous researcher, but have very little Fortran experience. I've worked through most of the syntax conversion in the file, but I'm running into an issue ...
2
votes
2answers
340 views

Determine which compiler built my LAPACK

I want to install the newest version of numpy (a numerical library for Python), and the version (v1.6.1) is not yet in the Ubuntu Oneiric repositories. When I went ahead to manually install it, I read ...
0
votes
1answer
196 views

g77 version 3.2 creates large object file with the option -finit-local-zero

I'm working with a legacy + academic + numerical fortran-77 code that requires g77 3.2.x in order to compile and run successfully ... I'm using that compiler on Red Hat Linux 9 for i386 One of those ...
0
votes
1answer
128 views

Using DLLs in g77

I'm using the old g77 compiler (http://people.tamu.edu/~matthewmccleskey/g77.html) but can't seem to find out how to use external DLLs in my code. Is it even possible, or would I have to get a newer ...
0
votes
1answer
624 views

Real vs. Integer in Fortran

I have a program which loops over one variable and computes a value at each step: program cpout implicit none !declarations integer, parameter :: dp = selected_real_kind(15) ...
2
votes
1answer
253 views

Relation of GNU f77/gfortran and f2c?

What is the relation of g77/gfortran and f2c today? Is there still development going on? Is one benefiting from the others advances (like bugs and performance)? Who is developing f2c (if it's not ...
2
votes
1answer
243 views

“DATA INT / 'STRING' /” problem when compiling with gfortran

I have some old (~1995) legacy fortran code which is compiled with g77 compiler and fails on gfortran. The problem is in following lines (incompatible types conversion, character to integer): INTEGER ...
2
votes
1answer
2k views

gfortran Error: Nonnegative width required in format string at (1)

The code in question is this: subroutine PG_TLab_Write(c30,r,d) implicit none character*30 c30,leftjust real*4 r integer*4 d,k if (d.eq.0) then write(c30,'(i30)') nint(r) elseif ...
0
votes
2answers
163 views

Recompiling an old Fortran program and getting this error

The section of code looks like this; DO i = 1 , no2 + 1 IF ( Isign.EQ.1 ) THEN Ans(i) = fft(i)*Ans(i)/no2 ELSEIF ( Isign.EQ.-1 ) THEN IF ( ABS(Ans(i)) .EQ. 0.0 ) & ...
1
vote
1answer
813 views

question on (non-existent) g77

I have Ubuntu 10.04 and gcc version 4.4.3 I have been trying to install this library called SUPER_LU and there are some codes in it are written in Fortran. Typing make at the top level directory ...
2
votes
5answers
2k views

F77: problem to compile with g77 a program which was normally compiled with Absoft compiler

I am not a Fortran programmer (just a short experience), but I need to compile a program partly written in F77. Someone has compiled it with Absoft compiler before me, but now I need to repeat the ...
1
vote
1answer
362 views

The Make and Shell Command Option in g77

What do the make and shell option mean in g77? For example, if I have the following script in my Makefile: FC = g77 FFLAGS = -O2 -mno-cygwin LDFLAGS = CD = cd LN = ln LNFLAGS = -s MAKE = /bin/make RM ...
0
votes
2answers
386 views

Fortran compile error

I tried to compile a fortran program for soil-plant-atmosphere model, but I can't compile it under Ubuntu, it keeps giving me the error message like this: f77 -c -o o/cupin2.o src/cupin2.f ...
3
votes
2answers
5k views

Make double-precision default in g77, Fortran compiler

Is there an analog of the "-fdefault-real-8" gfortran (the GNU Fortran 95 compiler) option in g77 (the GNU Fortran 77 compiler)? This option sets the default real type to an 8-byte wide type. I ...
6
votes
3answers
1k views

How to find out which compiler was used: g77 or gfortran

I'm compiling library for a private project, which depends on a number of libraries. Specifically one of the dependencies is compiled with Fortran. On some instances, I've seen the dependency compiled ...