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=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,44b339a8f30d7ab7 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-03-24 23:01:12 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.wirehub.nl!newsfeed00.sul.t-online.de!newsmm00.sul.t-online.de!t-online.de!news.t-online.com!not-for-mail From: Martin Krischik Newsgroups: comp.lang.ada Subject: Re: Ada compiler not installed on this system Date: Thu, 25 Mar 2004 07:55:32 +0100 Organization: AdaCL Message-ID: <1102484.cgWYP6UCLW@linux1.krischik.com> References: Reply-To: krischik@users.sourceforge.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: news.t-online.com 1080197928 01 12006 YfCmGTG6INDAmGc 040325 06:58:48 X-Complaints-To: usenet-abuse@t-online.de X-ID: r6xKUmZZoetx6NMwi78caoSKBZOpOOl+1PtId8f04yyeD-EQm1FQEE User-Agent: KNode/0.7.2 Xref: archiver1.google.com comp.lang.ada:6496 Date: 2004-03-25T07:55:32+01:00 List-Id: Zouplaz wrote: > 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) function Configure_And_Compile () { local -r in_Dir=${1}; local -r in_Config=${2}; pushd ${in_Dir}/${in_Config}; find "." \ -name "config.cache" \ -exec "rm" "--verbose" '{}' ';' ; ../gcc/configure \ --prefix=/opt/ada \ --enable-libada \ --enable-shared \ --enable-threads=gnat \ --enable-languages=ada,c,f77,c++ \ --target=${in_Config} ; make -j8 | tee ../compile.${in_Config}.log; make -C gcc gnatlib_and_tools; popd; return; } Does the trick for me. Never install into the directory where your distribution have there compiler installed! With Regards Martin -- mailto://krischik@users.sourceforge.net http://www.ada.krischik.com