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.4 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c1b98fe2a8046ba0 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.180.74.79 with SMTP id r15mr928919wiv.4.1354639806536; Tue, 04 Dec 2012 08:50:06 -0800 (PST) Path: ha8ni140396wib.1!nntp.google.com!goblin1!goblin.stu.neva.ru!news.mixmin.net!weretis.net!feeder4.news.weretis.net!news.teledata-fn.de!newsfeed.arcor.de!newsspool4.arcor-online.net!news.arcor.de.POSTED!not-for-mail Date: Tue, 04 Dec 2012 17:49:22 +0100 From: Georg Bauhaus User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: ada and gnat (mingw) References: <05172689-1761-45d4-9699-c829f6e63c93@r14g2000vbd.googlegroups.com> <23f2ca78-1a74-4b77-9543-c152b8691ca7@p17g2000vbn.googlegroups.com> In-Reply-To: <23f2ca78-1a74-4b77-9543-c152b8691ca7@p17g2000vbn.googlegroups.com> X-Enigmail-Version: 1.4.6 Message-ID: <50be298f$0$9523$9b4e6d93@newsspool1.arcor-online.net> Organization: Arcor NNTP-Posting-Date: 04 Dec 2012 17:49:19 CET NNTP-Posting-Host: 83aec50e.newsspool1.arcor-online.net X-Trace: DXC=o]cJFaPDDgbIkjb;<8iR=aic==]BZ:afn4Fo<]lROoRankgeX?EC@@`L]_QDT8B6ionc\616M64>jLh>_cHTX3jm?X:\50lZ3^f X-Complaints-To: usenet-abuse@arcor.de Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Date: 2012-12-04T17:49:19+01:00 List-Id: On 04.12.12 16:17, Hans Vlems wrote: > Thanks, that problem is now solved. > Where sould I have found that information? The mingw site is mainly > oriented towards installation issues. > ADA specific information is hard to find. Usually, distributions of GNAT or GCC include its documentation, which has introductory material (User's Guide) and reference material (Reference Manual) (as required by the LRM). The relevant files' names may be gnat_ugnw.* and gnat_rm.*, respectively. They cover these aspects. From the section 1.2 Running a Simple Ada Program: "This compiler is capable of compiling programs in several languages, including Ada and C. It assumes that you have given it an Ada program if the file extension is either `.ads' or `.adb', and it will then call the GNAT compiler to compile the specified file." GNAT's gnatchop program, amongst other possibilities, lets GNAT process Ada source text that does not follow the .ads/.adb convention. "1 Getting Started with GNAT" is recommended reading.