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=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,23c85e456e18d6b5 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!news3.google.com!newshub.sdsu.edu!elnk-nf2-pas!elnk-pas-nf1!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!newsread3.news.pas.earthlink.net.POSTED!14bb18d8!not-for-mail Sender: Matthew Heaney@MHEANEYIBMT43 Newsgroups: comp.lang.ada Subject: Re: The Computer Language Shootout Benchmarks References: <1262902.DI8C0e8O9o@linux1.krischik.com> From: Matthew Heaney Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 03 May 2006 00:12:07 GMT NNTP-Posting-Host: 24.149.57.125 X-Complaints-To: abuse@earthlink.net X-Trace: newsread3.news.pas.earthlink.net 1146615127 24.149.57.125 (Tue, 02 May 2006 17:12:07 PDT) NNTP-Posting-Date: Tue, 02 May 2006 17:12:07 PDT Organization: EarthLink Inc. -- http://www.EarthLink.net Xref: g2news2.google.com comp.lang.ada:4025 Date: 2006-05-03T00:12:07+00:00 List-Id: Martin Krischik writes: > One test [2] needs a hash table implementation. The compiler used has > no Ada 2005 features so one need to add the implementation to the code > itself. Anybody can got a stand alone implementation? Or knows which > collections class lib could easily been torn apart? The latest versions of GCC have Ada 2005 support, and a full implementation of the Ada 2005 container library. You're sure the shootout people aren't using the latest GCC version? (You have to compile with -gnat05 of course.) If you need a hashed map, then you can always use Charles, which compiles under Ada95: http://charles.tigris.org/ If you prefer an Ada95 version of the Ada 2005 container library, I can modify the GCC sources to compile under Ada95 and add that to the Charles repository. -Matt