www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - What's the latest GDC stable release version?

reply mw <mw g.c> writes:
Hi,

What's the latest GDC stable release version?


The GDC link on:

https://dlang.org/download.html

is very out dated.

I think it at least should show the latest version number, and 
link to the announcement.


Thanks.
Jun 16
parent reply Dejan Lekic <dejan.lekic gmail.com> writes:
On Sunday, 16 June 2024 at 16:26:08 UTC, mw wrote:
 Hi,

 What's the latest GDC stable release version?
Stable release version is the same as stable GCC release version. Find it here: https://gcc.gnu.org/ (GDC is part of the GCC project for years)
Jun 17
parent reply mw <mw g.c> writes:
On Monday, 17 June 2024 at 15:33:46 UTC, Dejan Lekic wrote:
 On Sunday, 16 June 2024 at 16:26:08 UTC, mw wrote:
 Hi,

 What's the latest GDC stable release version?
Stable release version is the same as stable GCC release version. Find it here: https://gcc.gnu.org/ (GDC is part of the GCC project for years)
Thanks, but it's not clear which D (dmd) language version they are corresponding to,e.g. I found: https://forum.dlang.org/post/qbjmtdyglcwmzekyxkem forum.dlang.org GCC version 12.2 has been released. Updated the D front-end from v2.100.0-rc1 to v2.100.1. But for GCC 13, 14, the status is less clear: are these version stable and released, and when? https://forum.dlang.org/post/amsduzcnbgvptaxjtlcn forum.dlang.org He was also preparing to push out GDC 13.2. GDC 13 maps to DMD 2.103. He had backported around ten regression fixes for it so far. GDC 14, the current development version, was still tracking the upstream DMD mainline. There were no blockers there and everything was going fine merging from DMD master down to GDC.
Jun 17
parent reply Brian Callahan <bcallah openbsd.org> writes:
On Monday, 17 June 2024 at 16:20:55 UTC, mw wrote:
 On Monday, 17 June 2024 at 15:33:46 UTC, Dejan Lekic wrote:
 On Sunday, 16 June 2024 at 16:26:08 UTC, mw wrote:
 Hi,

 What's the latest GDC stable release version?
Stable release version is the same as stable GCC release version. Find it here: https://gcc.gnu.org/ (GDC is part of the GCC project for years)
Thanks, but it's not clear which D (dmd) language version they are corresponding to,e.g. I found: https://forum.dlang.org/post/qbjmtdyglcwmzekyxkem forum.dlang.org GCC version 12.2 has been released. Updated the D front-end from v2.100.0-rc1 to v2.100.1. But for GCC 13, 14, the status is less clear: are these version stable and released, and when? https://forum.dlang.org/post/amsduzcnbgvptaxjtlcn forum.dlang.org He was also preparing to push out GDC 13.2. GDC 13 maps to DMD 2.103. He had backported around ten regression fixes for it so far. GDC 14, the current development version, was still tracking the upstream DMD mainline. There were no blockers there and everything was going fine merging from DMD master down to GDC.
The changes document for gcc-12 did provide this information: https://gcc.gnu.org/gcc-12/changes.html However, the changes document for gcc-13 and gcc-14 appear not to. Iain does always document updates to the language version: https://gcc.gnu.org/git/?p=gcc.git&a=search&h=HEAD&st=commit&s=D+front-end To get the D versions for any version of GDC, you can triangulate commits. That will lead you to this commit for GDC 13: https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=328477f6ee82d27fa6bb09617644d409be300688 and GDC 14: https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=09992f8b881aa2dfbee1e9d6954c3ca90cd3fe41 So GDC 14.1 includes the D language at v2.108.0. ~Brian
Jun 17
parent mw <mingwu gmail.com> writes:
 and GDC 14: 
 https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=09992f8b881aa2dfbee1e9d6954c3ca90cd3fe41

 So GDC 14.1 includes the D language at v2.108.0.
This is wonderful: Synchronizing with the upstream release of v2.108.0. BTW, if the following two pages are updated with version information, that will be great: https://dlang.org/download.html https://gdcproject.org/downloads
Jun 17