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,5ca3d5098e21bb51 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!19g2000hsx.googlegroups.com!not-for-mail From: Lucretia Newsgroups: comp.lang.ada Subject: Re: What are the limitations imposed by GNAT without runtime? Date: Wed, 10 Oct 2007 12:24:23 -0700 Organization: http://groups.google.com Message-ID: <1192044263.947072.300510@19g2000hsx.googlegroups.com> References: <1191947316.791605.8420@50g2000hsm.googlegroups.com> <1192010655.057857.9760@k79g2000hse.googlegroups.com> <1192042858.495410.139280@d55g2000hsg.googlegroups.com> NNTP-Posting-Host: 90.194.162.195 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Trace: posting.google.com 1192044264 9675 127.0.0.1 (10 Oct 2007 19:24:24 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 10 Oct 2007 19:24:24 +0000 (UTC) In-Reply-To: <1192042858.495410.139280@d55g2000hsg.googlegroups.com> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.6) Gecko/20061201 Firefox/2.0.0.6 (Ubuntu-feisty),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: 19g2000hsx.googlegroups.com; posting-host=90.194.162.195; posting-account=ps2QrAMAAAA6_jCuRt2JEIpn5Otqf_w0 Xref: g2news2.google.com comp.lang.ada:2420 Date: 2007-10-10T12:24:23-07:00 List-Id: On Oct 10, 8:00 pm, Lucretia wrote: > 14.1 pragma No Run Time > > > The pragma No_Run_Time is used to achieve an affect similar to the > > use of the "Zero Foot Print" configurable run time, but without > > And this ZFP profile doesn't exist in the gcc-4.2.2 docs, it's > mentioned in 14.1, but that's all. On having a grep in the source, I found this in targparm.ads: -- The corresponding string constant is placed immediately at the start -- of the private part of system.ads if is present, e.g. in the form: -- Run_Time_Name : constant String := "Zero Footprint Run Time"; -- the corresponding messages will look something like -- xxx not supported (Zero Footprint Run Time) Run_Time_Name_On_Target : Name_Id := No_Name; -- Set to appropriate names table entry Id value if a Run_Time_Name -- string constant is defined in system.ads. This name is used only -- for the configurable run-time case, and is used to parametrize -- messages that complain about non-supported run-time features. -- The name should contain only letters A-Z, digits 1-9, spaces, -- and underscores. Dunno, if this'll work if I just take the standard system.ads from gcc/ ada and modify it. There is also an entry in system.ads: Configurable_Run_Time : constant Boolean := False; which seems to refer to the Run_Time_Name_On_Target above. Luke.