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=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Path: eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail From: Ludovic Brenta Newsgroups: comp.lang.ada Subject: Re: Alternative for Gnat Studio Date: Mon, 01 Mar 2021 19:04:56 +0100 Organization: A noiseless patient Spider Message-ID: <87o8g2zr5j.fsf@samuel> References: <602e608e$0$27680$e4fe514c@news.kpn.nl> <60379b69$0$20345$e4fe514c@news.kpn.nl> <86zgzn4xcs.fsf@stephe-leake.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: reader02.eternal-september.org; posting-host="f936f1c21a50277d157147f55d8d7e13"; logging-data="24387"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19USr4rn89vLDAFajnMxZdf" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) Cancel-Lock: sha1:SgbYLsy3gb2FnUq6v3Rvyl3LgWc= sha1:QoeWnjgt++TvSCTgpmGkOqIOnt0= Xref: reader02.eternal-september.org comp.lang.ada:61455 List-Id: Stephen Leake writes: > "Dmitry A. Kazakov" writes: > >> GDB and IDE are different things. GDB never really worked for complex >> projects and, I am afraid, it never will. > > GDB has always met my needs, programming spacecraft simulators for > NASA. In addition: For memory corruption, the memcheck tool of valgrind is extremely valuable. This is a rare occurrence in Ada but use-after-free can still happen. For race conditions, the helgrind tool of valgrind is extremely valuable. Again, a rare occurrence in Ada if you use protected objects but not so rare if you use rendez-vous between tasks. Of course, we're only talking about "complex" projects here. That is, technology sufficiently "advanced" to seem "magical" :) -- Ludovic Brenta.