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=unavailable autolearn_force=no version=3.4.4 Path: border1.nntp.dca3.giganews.com!border3.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!usenet.blueworldhosting.com!v102.xanadu-bbs.net!xanadu-bbs.net!nntp.club.cc.cmu.edu!micro-heart-of-gold.mit.edu!newsswitch.lcs.mit.edu!nntp.TheWorld.com!.POSTED!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Gnat 2013 is out! Date: Wed, 12 Jun 2013 16:01:41 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <474f7a33-9de9-4998-a99e-a4114bd8a90e@googlegroups.com> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls6.std.com 1371067301 6191 192.74.137.71 (12 Jun 2013 20:01:41 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Wed, 12 Jun 2013 20:01:41 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:a9vAxIsnunEO4ITEHVwRAQpare0= X-Original-Bytes: 1863 Xref: number.nntp.dca.giganews.com comp.lang.ada:181840 Date: 2013-06-12T16:01:41-04:00 List-Id: Maciej Sobczak writes: > So I have downloaded the Linux version, followed the installation > procedure and... the gcc and g++ compilers that are part of the > package do not work (the standard header files do not seem to form a > complete set and even the hello world program in C and C++ reach out > to system header files and from there they cannot find their > dependencies - this is on Ubuntu). Unfortunately it is not only header > files - after downloading AWS and running make setup, the scripts try > to build some little test program (xoscons) that fails to link due to > missing crtp.o, which breaks the whole procedure. I think you might need something like this: export LIBRARY_PATH=/usr/lib/x86_64-linux-gnu export C_INCLUDE_PATH=/usr/include/x86_64-linux-gnu - Bob