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=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a6b:e61a:: with SMTP id g26mr11727184ioh.300.1560102208736; Sun, 09 Jun 2019 10:43:28 -0700 (PDT) X-Received: by 2002:a9d:7741:: with SMTP id t1mr18553453otl.178.1560102208557; Sun, 09 Jun 2019 10:43:28 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!weretis.net!feeder6.news.weretis.net!feeder.usenetexpress.com!feeder-in1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!s188no601473itb.0!news-out.google.com!l126ni522itl.0!nntp.google.com!g15no595008itd.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sun, 9 Jun 2019 10:43:28 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2003:e0:af48:458c:2dc7:b118:9841:d595; posting-account=5zx--goAAAD06H29EnWQGKTO-gctuXHl NNTP-Posting-Host: 2003:e0:af48:458c:2dc7:b118:9841:d595 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: GNAT Community 2019 is here! From: Charly Injection-Date: Sun, 09 Jun 2019 17:43:28 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:56577 Date: 2019-06-09T10:43:28-07:00 List-Id: Hi, unfortunately GNAT Community 2019 ist no longer able to compile code of old Ada Versions: $ gnatmake main.adb -gnat05 gcc -c -gnat05 main.adb gnat1: invalid switch: -gnat05 gnatmake: "main.adb" compilation error $ gnatmake main.adb -gnat2005 gcc -c -gnat2005 main.adb gnat1: invalid switch: -gnat2005 gnatmake: "main.adb" compilation error The same happens for -gnat95 and -gnat83 Only -gnat12 and -gnat2012 work: $ gnatmake main.adb -gnat12 gcc -c -gnat12 main.adb gnatbind -x main.ali gnatlink main.ali $ gnatmake main.adb -gnat2012 gcc -c -gnat2012 main.adb gnatbind -x main.ali gnatlink main.ali Also the pragma Ada_2005 does not work: gnatmake main.adb gcc -c main.adb main.adb:1:01: warning: pragma "Ada_2005" ignored gnatbind -x main.ali gnatlink main.ali Sincerely Charly