ここからGNAT 4.3をインストールしました
そして、私の .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 のインストールに問題があると思いますが、この問題の解決策を見つけることができませんでした。
ご提案いただきありがとうございます。