0

我正在尝试运行一个程序,在它的描述中它显示它需要“免费的 GCC(C) 和 GPC(Pascal) 编译器”。我正在运行 32 位 Ubuntu 10.04 并安装了包“GPC-4.1”和“GPC”。

我检查了我的 gpc 版本:

$ gpc --version
gpc 20070904, based on gcc-4.1.3 20080704 (prerelease) (Ubuntu 2.1-4.1.2-27ubuntu2)

所以我相信GPC安装成功了。但是当我运行程序时,它仍然显示:

gcc: /home/source/fmopt.pas: Pascal compiler not installed on this system
cc1: error: unrecognized command line option "-fautomake"

我想念什么?谢谢!

4

1 回答 1

0

请试试

sudo apt-get update
sudo apt-get install build-essential

上面的命令应该为 ubuntu 安装所有必要的构建工具,例如 Gnu Compiler Collection (gcc) 工具等。无论您的系统缺少什么,我猜这些命令都有可能修复它。

于 2014-10-19T20:15:00.623 回答