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,9c774f310a3b396 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-08-15 12:28:29 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!kibo.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: stacktrace on linux Date: 15 Aug 2003 20:26:58 +0100 Organization: Pushface Sender: simon@smaug.pushface.org Message-ID: References: NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1060975708 16071 62.49.19.209 (15 Aug 2003 19:28:28 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Fri, 15 Aug 2003 19:28:28 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 Xref: archiver1.google.com comp.lang.ada:41530 Date: 2003-08-15T20:26:58+01:00 List-Id: "Martin Moosbrucker" writes: > on RedHat I don't get any information of the lines in my sourcecode: > > Exception name: CONSTRAINT_ERROR > Message: stack_trace.adb:13 > Call stack traceback locations: > 0x804a090 0x804a3e3 0x804a6df 0x8049d91 0x42017497 > 0x804a090 in ?? at ??:0 > 0x804a3e3 in ?? at ??:0 > 0x804a6df in ?? at ??:0 > 0x8049d91 in ?? at ??:0 > 0x42017497 in ?? at ??:0 You probably need -g, as others have said. Also, you should have addr2line installed or installable: in your case, $ addr2line -e executable 0x804a090 0x804a3e3 0x804a6df 0x8049d91 0x42017497