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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,462a4f123e2d4476 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-03-22 23:09:16 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: wilhelm.spickermann@t-online.de (Wilhelm Spickermann) Newsgroups: comp.lang.ada Subject: Re: not handled exceptions Date: 22 Mar 2002 23:09:15 -0800 Organization: http://groups.google.com/ Message-ID: <807366e2.0203222309.63907220@posting.google.com> References: NNTP-Posting-Host: 62.158.237.123 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1016867356 13620 127.0.0.1 (23 Mar 2002 07:09:16 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 23 Mar 2002 07:09:16 GMT Xref: archiver1.google.com comp.lang.ada:21571 Date: 2002-03-23T07:09:16+00:00 List-Id: Michal Nowikowski wrote in message news:... > > declare > D : Integer_Array_Access; > begin > -- D is not allocated, so such call should raise > -- Constraint_Error exception: > D(3) := 5; > end; > > but program does not throw exception instead it hangs. ... > I use Gnat 3.14 on Linux box. Have You any idea how to > solve this problem? Hi, that may an installation problem. Your Linux box comes with a gcc and GNAT comes with a different gcc and both are needed and may not mix up. The people from gnuada.org have done a great job to close all the holes where mixups may happen. Gnat 3.13p installed from the RPMs available at www.gnuada.org doesn't have the problem you have described and the 3.14p RPMs are announced for about mid April. Wilhelm