make g77 command not found

2.2k Views Asked by At

I am trying to make a project:

https://www.cs.virginia.edu/stream/FTP/Code/

it reports:

make: g77 command not found.

I saw this line in Makefile:

FF = g77

Can I change 'g77' here to something else to compile in the current OS, ex: Ubuntu 18.04?

1

There are 1 best solutions below

0
On BEST ANSWER

change

FF = g77 

to

FF = gfortran 

works.