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,b847a4bf21e6829a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-14 12:06:19 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!sn-xit-03!sn-xit-06!sn-post-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: Andrew Newsgroups: comp.lang.ada Subject: Re: windows ada compiler error Date: Tue, 14 Oct 2003 14:06:49 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: <3F8C4949.4090304@chartermi.net> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 X-Accept-Language: en-us, en MIME-Version: 1.0 References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@supernews.com Xref: archiver1.google.com comp.lang.ada:849 Date: 2003-10-14T14:06:49-05:00 List-Id: Stephen Leake wrote: > Andrew writes: > > >>i just typed man gnat and man gnatmake >>what would I type to be able to read how to use the gnat facilities? > > > GNAT 3.15p has an HTML version of its user guide and reference manual; > look in GNAT/Doc/... > > You can also get 'info' versions in the file > gnat-3.15p-unx-docs.tar.gz. > > >>and also what would the command line be to do the walkback? > > > Use the gdb debugger (distributed with GNAT). Sample session: > > $ gdb my_program.exe > gdb> break exception > gdb> run > (message about stopping on a line) > gdb> where > > that shows you the stack. Then you can use normal debugging stuff to > figure it out; do 'help' in gdb, or find the gdb manual in GNAT/Doc. > ahh thank you .. I'll look into all this