并将以下内容添加到我的 .bash_profile 中:
export PATH=/usr/local/ada-4.3/bin:$PATH
现在我可以运行 gnatmake hello.adb
对于具有以下内容的文件 hello.adb:
with Ada.Text_IO;use Ada.Text_IO;
procedure Hello is
begin
Put_Line ("Hello world!");
end Hello;
但我得到这个错误:
gcc -c hello.adb
gcc: error trying to exec 'as': execvp: No such file or directory
gnatmake: "hello.adb" compilation error
我猜我的 GNAT 安装有问题,但我一直找不到解决这个问题的方法。
在此先感谢您的任何建议。