Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

make g77 command not found

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?

like image 309
Mark Kang Avatar asked Mar 28 '26 04:03

Mark Kang


1 Answers

change

FF = g77 

to

FF = gfortran 

works.

like image 113
Mark Kang Avatar answered Mar 29 '26 21:03

Mark Kang