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,5f4b1780da445b55 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-20 09:24:00 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Need help for debugging an Ada DLL Date: 20 Jul 2001 12:18:13 -0400 Organization: NASA Goddard Space Flight Center Message-ID: References: NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 995646931 27865 128.183.220.71 (20 Jul 2001 16:35:31 GMT) X-Complaints-To: dscoggin@cne-odin.gsfc.nasa.gov NNTP-Posting-Date: 20 Jul 2001 16:35:31 GMT User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.6 Xref: archiver1.google.com comp.lang.ada:10348 Date: 2001-07-20T16:35:31+00:00 List-Id: "Hagi Yilmaz" writes: > I built my Ada DLL by Gnat 3.13p compiler in WinNT. > > > Is the problem due to symbol-file, symbol table? How can I achieve > this then? It appears you did not include debugging information in the DLL. You need to specify -g at both compile and link steps. -- -- Stephe