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-Thread: 103376,6575b47ba54cee7c X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!e6g2000prf.googlegroups.com!not-for-mail From: Hibou57 Newsgroups: comp.lang.ada Subject: Re: Reducing the size of executables produced by GNAT Date: Thu, 14 Feb 2008 14:07:48 -0800 (PST) Organization: http://groups.google.com Message-ID: <1f0279b6-26a3-4d29-bab1-227481d74afb@e6g2000prf.googlegroups.com> References: <9c0a949b-ce82-4eda-99c9-02aace675266@d21g2000prf.googlegroups.com> <47b4141b$0$364$9b4e6d93@newsspool2.arcor-online.net> <97c1d855-d59f-429a-b544-55bc82175024@h11g2000prf.googlegroups.com> NNTP-Posting-Host: 86.75.149.125 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1203026869 6432 127.0.0.1 (14 Feb 2008 22:07:49 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 14 Feb 2008 22:07:49 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: e6g2000prf.googlegroups.com; posting-host=86.75.149.125; posting-account=vrfdLAoAAAAauX_3XwyXEwXCWN3A1l8D User-Agent: G2/1.0 X-HTTP-UserAgent: Opera/9.23 (Windows NT 5.1; U; fr),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:19795 Date: 2008-02-14T14:07:48-08:00 List-Id: I'm trying to set up a personalized RTS, but when I always get this message : > test.adb:2:04: construct not allowed in configurable run-time mode where test.adb is > procedure test is > e: exception; > begin > raise e; > exception > when others => > null; > end; I'm not sure to understand, beceause this seems paradoxal : a custom runtime is not allowed to implements every things ? There are things that are not allowed with a custom runtime ? I get this with "gnatmake --RTS=... test" This is strange.