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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: storage error: stack overflow Date: Thu, 13 Aug 2015 07:58:04 +0100 Organization: A noiseless patient Spider Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: mx02.eternal-september.org; posting-host="701e1a91696e79a9574ebe874fee72d6"; logging-data="20649"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18YZb1rllC/+ap6UIxWXcs1TWUfNHPeOs4=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (darwin) Cancel-Lock: sha1:YAOe298XCd+kKEmTnbeguj14cJ4= sha1:7g9CT73HCwpXDWP9Nc3y40t2tFU= Xref: news.eternal-september.org comp.lang.ada:27430 Date: 2015-08-13T07:58:04+01:00 List-Id: hreba writes: > (gdb) catch exception storage_error > Your Ada runtime appears to be missing some debug information. > Cannot insert Ada exception catchpoint in this configuration. I wrote about something similar at [1]. The workround there was to say, in gdb, (gdb) print __gnat_debug_raise_exception which managed to find and cache the symbol that 'catch exception' was looking for, after which 'catch exception' worked. [1] http://forward-in-code.blogspot.co.uk/2012/01/catching-exceptions-in-gdb.html