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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5506c2365bd40ef5 X-Google-Attributes: gid103376,public From: Stephen Leake Subject: Re: gdb fails unders win95? Date: 1999/05/25 Message-ID: #1/1 X-Deja-AN: 482048271 References: <7i620s$cp5$1@nnrp1.deja.com> Organization: NASA Goddard Space Flight Center -- Greenbelt, Maryland USA Newsgroups: comp.lang.ada Date: 1999-05-25T00:00:00+00:00 List-Id: fdebruin@my-dejanews.com writes: > I am trying to use the debugger that comes with > gnat (version 3.11p). It fails with the following > message: > > > [failed reading symbols from DLL] > "C:/WINDOWS/SYSTEM/MSVCRT.DLL": can't read > symbols: File format not recognized. > > > Does someone know how to remedy this? This above means gdb did not totally _fail_, it just doesn't have debug information for that DLL. You can still use it to debug your code. gdb has not yet been taught how to understand Microsoft debugging format, and probably never will. So the "remedy" is to just ignore these messages, and keep on going. -- Stephe