当我在终端中输入 make 来在我的计算机上构建库和一些测试时,出现此错误:
g77 -O -fno-automatic -c lsame.f -o lsame.o
make: g77: Command not found
make: *** [lsame.o] Error 127
请帮帮我。我也无法安装 g77!
答案1
存储库中有 GNU Fortran 95 编译器,可以通过以下方式安装
sudo apt-get install gfortran
这是 GNU Fortran 95 编译器,可在 gcc 编译器支持的平台上编译 Fortran 95。它使用 gcc 后端生成优化代码。g77 不再使用。