From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,44b339a8f30d7ab7,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-03-24 08:16:17 PST Path: archiver1.google.com!news1.google.com!news.glorb.com!newsfeed.stueberl.de!proxad.net!feeder2-1.proxad.net!news5-e.free.fr!not-for-mail Newsgroups: comp.lang.ada Subject: Ada compiler not installed on this system From: Zouplaz Message-ID: User-Agent: Xnews/5.04.25 Date: 24 Mar 2004 16:16:07 GMT Organization: Guest of ProXad - France NNTP-Posting-Date: 24 Mar 2004 17:16:07 MET NNTP-Posting-Host: 81.248.170.76 X-Trace: 1080144967 news5-e.free.fr 281 81.248.170.76:4497 X-Complaints-To: abuse@proxad.net Xref: archiver1.google.com comp.lang.ada:6485 Date: 2004-03-24T17:16:07+01:00 List-Id: Hello, I would like to learn ada programming (on a linux system). I've recently upgraded gcc from 2.96 to 3.3.3 (compiled from source to avoid rpm dependancy nightmares)... So this is my "official" gcc compiler. To setup the ada compiler the easy way seems to install gnat 1.15 binaries. So, they are now under /usr/gnat/ I've added /usr/gnat/bin after my PATH variable, and gnatmake is alive from everywhere. As you must guess, now I can't compile anything because the gcc binary invoked by gnatmake is the 3.3.3 without ada support and not the 2.8.1 included in /usr/gnat/bin So : 1) How can I tell gnatmake to use /usr/gnat/bin/gcc instead, without modifying my PATH variable each time I want to switch from one language to the other 2) Is there a simple method to add ada support to gcc 3.3.3 (I presume that --enable-language=ada,c++ is not enough, that would be a dream) I think a solution for the first option is certainly easier for me (I not a configure / make / compile guru !!) Thank you