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,CP1252 Path: g2news2.google.com!postnews.google.com!k1g2000yqf.googlegroups.com!not-for-mail From: =?ISO-8859-1?Q?Yannick_Duch=EAne_Hibou57?= Newsgroups: comp.lang.ada Subject: Re: First successful build gnat/gcc-4.4.1 on MinGW without modification needed Date: Fri, 31 Jul 2009 07:11:09 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <61838bb7-e501-4f60-b235-598a29d3f1d8@o15g2000yqm.googlegroups.com> <007c7c36-22dc-4749-85a4-b88cbe8f465b@x5g2000prf.googlegroups.com> NNTP-Posting-Host: 77.198.58.242 Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1249049470 1389 127.0.0.1 (31 Jul 2009 14:11:10 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 31 Jul 2009 14:11:10 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: k1g2000yqf.googlegroups.com; posting-host=77.198.58.242; posting-account=vrfdLAoAAAAauX_3XwyXEwXCWN3A1l8D User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; fr),gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:7489 Date: 2009-07-31T07:11:09-07:00 List-Id: On 31 juil, 16:01, Anh Vo wrote: > How many exception propagation model is there? In addition, how does > one find it out? I may be wrong, but I suppose he was talking about Set-Long-Jump and Table-Driven. You may find which one your compiler use, with the option =93 -v =94 passed to GCC. If in the output, you see contains =93 --enable-sjlj =94, this means the GCC compiler was configured to use Set-Long-Jump for exceptions, otherwise, the most common implementation is the Table-Driven one, due to its efficiency, beceause it does not cost any wasted overhead when no exceptions are raised, unlike what it is with the Set-Long-Jump (executables are just a bit bigger).