From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=0.0 required=3.0 tests=BAYES_40,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.5-pre1 X-Received: by 2002:ac8:660b:: with SMTP id c11mr11183735qtp.133.1614672504558; Tue, 02 Mar 2021 00:08:24 -0800 (PST) X-Received: by 2002:a25:1883:: with SMTP id 125mr28527291yby.465.1614672504201; Tue, 02 Mar 2021 00:08:24 -0800 (PST) Path: eternal-september.org!reader02.eternal-september.org!news.mixmin.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 2 Mar 2021 00:08:23 -0800 (PST) In-Reply-To: <5b0c7577-7dcc-468b-a24b-7447a8e796b7n@googlegroups.com> Injection-Info: google-groups.googlegroups.com; posting-host=87.88.29.208; posting-account=6yLzewoAAABoisbSsCJH1SPMc9UrfXBH NNTP-Posting-Host: 87.88.29.208 References: <602e608e$0$27680$e4fe514c@news.kpn.nl> <60379b69$0$20345$e4fe514c@news.kpn.nl> <86zgzn4xcs.fsf@stephe-leake.org> <5b0c7577-7dcc-468b-a24b-7447a8e796b7n@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <3808e6ec-1a49-4514-84e7-f444d94cdb2cn@googlegroups.com> Subject: Re: Alternative for Gnat Studio From: Emmanuel Briot Injection-Date: Tue, 02 Mar 2021 08:08:24 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader02.eternal-september.org comp.lang.ada:61459 List-Id: > Honest question: do you have advice for debugging exceptions in GDB?*** Do you know about the "catch exception" command ? gdb will automatically br= eak when an exception is raised. There could be a lot of these, so you can = also try the variant "catch exception unhandled". This doesn't always help to investigate what happened just before an except= ion, so we have also started using the "rr" tool, which basically executes = your program and records everything at every step, so that you can replay i= t. There is a cost in performance of course, but not as big as one would ex= pect. Finally, going back to the subject of this thread (alternative IDEs), I jus= t found the following video on AdaCore's website. It describes the new cros= s-referencing engine in GNAT Studio, and how it can be used with other IDEs= , in particular Visual Studio Code. https://www.adacore.com/product-update-2020/gnatstudio-update Emmanuel