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,39e5573431620920 X-Google-Attributes: gid103376,public From: Kirk Beitz Subject: Re: I need a Ada compiler that can "step" line by line Date: 1997/01/15 Message-ID: #1/1 X-Deja-AN: 209842455 sender: beitz@benson references: <32d77b5c.18218802@netnews2.worldnet.att.net> organization: Booz*Allen & Hamilton, Inc. newsgroups: comp.lang.ada Date: 1997-01-15T00:00:00+00:00 List-Id: dewar@merv.cs.nyu.edu (Robert Dewar) writes: > Pretty much any reasonable debugger has this capability. If you are > using GNAT, try using GDB under the EMACS interface. there is also no reason not to use gdb without emacs, if you are so inclined. i love emacs, but this shouldn't be an impediment for those who don't. gdb steps into and over ada statements, and even switches languages for you when your ada program imports c routines or exports subprograms that are called by c functions. you can also examine most simple ada structures and even some complex ones if you have a little patience. --kirk