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-Thread: 103376,56bf98898633498c X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Newsgroups: comp.lang.ada Subject: Re: try to bluid gvd References: <1149869682.687272.82750@u72g2000cwu.googlegroups.com> From: M E Leypold Date: 09 Jun 2006 18:39:41 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Some cool user agent (SCUG) NNTP-Posting-Host: 88.72.231.82 X-Trace: news.arcor-ip.de 1149870850 88.72.231.82 (9 Jun 2006 18:34:10 +0200) X-Complaints-To: abuse@arcor-ip.de Path: g2news2.google.com!news3.google.com!news4.google.com!newsfeed2.dallas1.level3.net!news.level3.com!newsfeed-00.mathworks.com!news.tele.dk!feed118.news.tele.dk!news.tele.dk!small.news.tele.dk!news-fra1.dfn.de!newsfeed.arcor-ip.de!news.arcor-ip.de!not-for-mail Xref: g2news2.google.com comp.lang.ada:4728 Date: 2006-06-09T18:39:41+02:00 List-Id: ferro.francesco@gmail.com writes: > > $gmake > [CODE] > gmake CFLAGS="-g -O2" -C pixmaps > gmake[1]: Entering directory `/usr/home/frantch/gvd-1.2.5/pixmaps' > gmake[1]: Nothing to be done for `all'. > gmake[1]: Leaving directory `/usr/home/frantch/gvd-1.2.5/pixmaps' > gmake CFLAGS="-g -O2" -C gnat > gmake[1]: Entering directory `/usr/home/frantch/gvd-1.2.5/gnat' > gcc -c -gnatg -g -O2 g-expect.adb > gcc: g-expect.adb: Ada compiler not installed on this system > gmake[1]: *** [g-expect.o] Error 1 > gmake[1]: Leaving directory `/usr/home/frantch/gvd-1.2.5/gnat' > gmake: *** [gnat] Error 2 > > [/CODE] > > hmm it say i havn't a ADa compiler on my systeme... but it strange i > HAVE a ada compiler (gnatmake.. etc...) and it work for me.. but there > no.. > Perhaps you have on of these systems where there is a "system c compiler" which doesn't know Ada and the Gnat c compiler is called gnatgcc? Then you could try export CC=gnatgcc ./configure ... gmake CC=gnatgcc CFLAGS="-g -O2" -C pixmaps It might be that the 'CC=...' in the make commandline is not actually needed. Regards -- Markus