Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

MS-DOS must die!


devel / comp.lang.ada / Re: ANN: GNAT CE 2021 for Intel macOS

SubjectAuthor
* ANN: GNAT CE 2021 for Intel macOSSimon Wright
+- Re: ANN: GNAT CE 2021 for Intel macOSBill Findlay
`- Re: ANN: GNAT CE 2021 for Intel macOSSimon Wright

1
ANN: GNAT CE 2021 for Intel macOS

<lytulwzcdy.fsf@pushface.org>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=5424&group=comp.lang.ada#5424

 copy link   Newsgroups: comp.lang.ada
Path: i2pn2.org!i2pn.org!aioe.org!yy9MKEJN2ULhWGfnfq4v5w.user.gioia.aioe.org.POSTED!not-for-mail
From: sim...@pushface.org (Simon Wright)
Newsgroups: comp.lang.ada
Subject: ANN: GNAT CE 2021 for Intel macOS
Date: Thu, 17 Jun 2021 17:25:45 +0100
Organization: Aioe.org NNTP Server
Lines: 7
Message-ID: <lytulwzcdy.fsf@pushface.org>
NNTP-Posting-Host: yy9MKEJN2ULhWGfnfq4v5w.user.gioia.aioe.org
Mime-Version: 1.0
Content-Type: text/plain
X-Complaints-To: abuse@aioe.org
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (darwin)
X-Notice: Filtered by postfilter v. 0.9.2
Cancel-Lock: sha1:NZbDBNRnt7cqWaVUnwH2PBl396M=
 by: Simon Wright - Thu, 17 Jun 2021 16:25 UTC

GNAT CE 2021, built for macOS El Capitan .. Big Sur, at

Sourceforge:
https://sourceforge.net/projects/gnuada/files/GNAT_GPL%20Mac%20OS%20X/2021-x86_64-darwin-bin/

Github (scroll down to the Assets section):
https://github.com/simonjwright/distributing-gcc/releases/tag/gnat-ce-2021

Re: ANN: GNAT CE 2021 for Intel macOS

<0001HW.267BCFB900EACDC870000DFBA38F@news.individual.net>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=5426&group=comp.lang.ada#5426

 copy link   Newsgroups: comp.lang.ada
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!3.eu.feeder.erje.net!feeder.erje.net!news2.arglkargh.de!news.karotte.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: findlayb...@blueyonder.co.uk (Bill Findlay)
Newsgroups: comp.lang.ada
Subject: Re: ANN: GNAT CE 2021 for Intel macOS
Date: Thu, 17 Jun 2021 19:45:13 +0100
Organization: none
Lines: 43
Message-ID: <0001HW.267BCFB900EACDC870000DFBA38F@news.individual.net>
References: <lytulwzcdy.fsf@pushface.org>
Reply-To: findlaybill@blueyonder.co.uk
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Trace: individual.net 9l5LdDMPi5gF+8ZxDYmz6ggOhU7w2BnDXNw2ieQQx0ZiJhmGP/
X-Orig-Path: not-for-mail
Cancel-Lock: sha1:Tr6002KV53ECmVujVv6D+z1hyvQ=
User-Agent: Hogwasher/5.24
 by: Bill Findlay - Thu, 17 Jun 2021 18:45 UTC

On 17 Jun 2021, Simon Wright wrote
(in article <lytulwzcdy.fsf@pushface.org>):

> GNAT CE 2021, built for macOS El Capitan .. Big Sur, at
>
> Sourceforge:
> https://sourceforge.net/projects/gnuada/files/GNAT_GPL%20Mac%20OS%20X/2021-x86
> _64-darwin-bin/ [...]

That's great, thank you Simon.

I did encounter one strange compiler error.
A bit of trivial code that has been passingall
regression tests for a decade suddenly failed thus:

> raised CONSTRAINT_ERROR : erroneous memory access.

(without a line number).

Binary search in my code narrowed it down to this:

> full_ruler : constant String (1 .. 80) := (others => '_');
>
> procedure log_rule (start_a_new_line : in Boolean := False;
> iff : in Boolean := True) is
> begin
> if start_a_new_line then cc_list.log_new_line(iff); end if;
> log_line(full_ruler, iff); -- <====== FAILS HERE!
> end log_rule;

If I replace:

log_line(full_ruler, iff);

by:

log_line(String'(1..80 => '_'), iff);

the exception goes away!

--
Bill Findlay

Re: ANN: GNAT CE 2021 for Intel macOS

<lyo89uvikw.fsf@pushface.org>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=5689&group=comp.lang.ada#5689

 copy link   Newsgroups: comp.lang.ada
Path: i2pn2.org!i2pn.org!aioe.org!RKN7TKnHC01q0gdg6EhkbQ.user.46.165.242.75.POSTED!not-for-mail
From: sim...@pushface.org (Simon Wright)
Newsgroups: comp.lang.ada
Subject: Re: ANN: GNAT CE 2021 for Intel macOS
Date: Wed, 18 Aug 2021 17:11:27 +0100
Organization: Aioe.org NNTP Server
Message-ID: <lyo89uvikw.fsf@pushface.org>
References: <lytulwzcdy.fsf@pushface.org>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: gioia.aioe.org; logging-data="3149"; posting-host="RKN7TKnHC01q0gdg6EhkbQ.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (darwin)
X-Notice: Filtered by postfilter v. 0.9.2
Cancel-Lock: sha1:E0y5PxE2oTa0wWvkPOty3FRz5Ek=
 by: Simon Wright - Wed, 18 Aug 2021 16:11 UTC

GNAT CE 2021, built for macOS El Capitan .. Big Sur, updated.

The problems addressed are:

* Bad dylib path in libxmlada_unicode.dylib.2021: I hadn't cleared out a
previous build attempt: fixed.
* Gnatcoll.Xref crash: this also affected emacs ada-mode: patched.
* GDB `file` command crash: patched.

Additionally, note:

* The Gnatcoll Python binding is (a) to Python 3, (b) to the
https://python.org release, which doesn't install in the same place as
the Big Sur Xcode release.
* Only the Sqlite backend for Gnatcoll DB is provided.

Sourceforge:
https://sourceforge.net/projects/gnuada/files/GNAT_GPL%20Mac%20OS%20X/2021-x86_64-darwin-bin-2/

Github (scroll down to the Assets section):
https://github.com/simonjwright/distributing-gcc/releases/tag/gnat-ce-2021-2

1
server_pubkey.txt

rocksolid light 0.9.7
clearnet tor