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,fe18532892e54b83 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!t-online.de!feeder.news-service.com!feeder3.cambrium.nl!feed.tweaknews.nl!news.netcologne.de!nhp.netcologne.de!newsfeed.arcor.de!newsspool2.arcor-online.net!news.arcor.de.POSTED!not-for-mail Newsgroups: comp.lang.ada Subject: Re: programming a web with ADA From: Georg Bauhaus In-Reply-To: <1161221227.739726.264430@m7g2000cwm.googlegroups.com> References: <1161104378.743103.235820@i42g2000cwa.googlegroups.com> <1161120208.6090.10.camel@localhost> <1161221227.739726.264430@m7g2000cwm.googlegroups.com> Content-Type: text/plain Organization: # Message-ID: <1162382979.5324.18.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit Date: Wed, 01 Nov 2006 13:09:43 +0100 NNTP-Posting-Date: 01 Nov 2006 13:07:21 CET NNTP-Posting-Host: ca329731.newsspool2.arcor-online.net X-Trace: DXC=RKodIC3lc2@2jYf>V4L0gLA9EHlD;3YcB4Fo<]lROoRAFl8W>\BH3YB98oN_PZ8?>AA:ho7QcPOVC3>PW^TN45\M9`h3\I5l@2B X-Complaints-To: usenet-abuse@arcor.de Xref: g2news2.google.com comp.lang.ada:7322 Date: 2006-11-01T13:07:21+01:00 List-Id: On Wed, 2006-10-18 at 18:27 -0700, Britt Snodgrass wrote: > Georg Bauhaus wrote: > > > > > There are some limitations as regards full Ada 95 language > > support. The class files generated by JGNAT and AppletMagic > > need backwards compatibility switches turned on when you > > run them. > I have never used either but I think I read that that neither of them > support JVM versions newer than version 1.2 (i.e. JDK 1.2 or J2SE 1.2). FWIW, here is an update as I've just got AppletMagic for Linux. It seems a number of things have been fixed and added. Running Ada->JVM programs is straightforward so far using either JDK 1.5 or GCC's gij (the GNU interpreter for Java bytecode). I.e., $ adajava hello.ada $ java hello Hello, World! $ The new things include byte code injections for SofCheck's analysis tools. So I guess you can use just Ada language properties for program analysis where you would otherwise be using the new Java @annotations from the Do-it-Yourself Java language straightening toolkit ;-) Georg