Build logs of GCC, G++ and GNAT on FreeBSD x86_64 now available
Hello. I'm now doing regular builds/tests from SVN of GCC, G++ and GNAT on FreeBSD x86_64 and publishing the build logs at: http://gcc.coreland.ath.cx I hope to produce builds weekly. Unfortunately I can't publish the actual binaries due to space/bandwidth restrictions. While there aren't *too* many test failures currently, there appears to be a problem with the test suite in that it returns a 'failure' exit code when the test ends and I'm not sure if this is expected behaviour or not. Highlights of the first build (SVN r154276): === acats Summary === # of expected passes2290 # of unexpected failures31 *** FAILURES: c52103x c52104x c52104y c761007 c85005c c85006c c910002 c93004b c93004c c93004d c93005a c93005b c94001c c94002b c94002e c94002f c94002g c94007a c94007b c94008c c94008d c94020a c95040c c97203c c97303c c9a007a c9a009c c9a009g cb1010a cb1010c cb1010d === g++ Summary === # of expected passes20986 # of unexpected failures4 # of expected failures 150 # of unsupported tests 286 /gnat/obj/gcc/testsuite/g++/../../g++ version 4.5.0 20091118 (experimental) (GCC) === gcc Summary === # of expected passes57515 # of unexpected failures42 # of unexpected successes 4 # of expected failures 169 # of unsupported tests 1511 /gnat/obj/gcc/xgcc version 4.5.0 20091118 (experimental) (GCC) === gnat Summary === # of expected passes739 # of unexpected failures4 # of expected failures 5 === libgomp Summary === # of expected passes1001 # of unexpected failures2 # of unsupported tests 2 === libmudflap Summary === # of expected passes1884 # of unexpected failures10 === libstdc++ Summary === # of expected passes6337 # of unexpected failures2 # of expected failures 89 # of unsupported tests 389 Regards, M
Re: Build logs of GCC, G++ and GNAT on FreeBSD x86_64 now available
On 2009-11-18 11:03:01, Dave Korn wrote: > g...@coreland wrote: > > > While there aren't *too* many test failures currently, there appears to > > be a problem with the test suite in that it returns a 'failure' exit > > code when the test ends and I'm not sure if this is expected behaviour > > or not. > > Yes, it certainly is expected and by-design. Generally people give make the > "-k" option when running any of various the check targets. That's slightly worrying. I'm using 'gmake -k check' (GNU make isn't the default make on my system) and yet it still fails... M
Re: Build logs of GCC, G++ and GNAT on FreeBSD x86_64 now available
On 2009-11-18 12:04:47, Eric Botcazou wrote: > > That's slightly worrying. I'm using 'gmake -k check' (GNU make isn't the > > default make on my system) and yet it still fails... > > Sure, it "fails" as long as you have failures in the testsuite. OK, that's fine then. Is the quoting on "fails" significant? Regards, M
Re: Build logs of GCC, G++ and GNAT on FreeBSD x86_64 now available
'Lo. Is anyone interested in committing the two extremely minor patches to enable proper support for FreeBSD x86_64? Support for Debian/kFreeBSD x86_64 already exists in GCC, this Makefile patch just enables support for "pure" FreeBSD (same kernel, different userland): http://gcc.coreland.ath.cx/r154285_2009-11-18_103532/patch-gcc-ada-gcc-interface-Makefile.in This one just allows GCC to build on stricter settings (adds two missing ATTRIBUTE_UNUSED macros and fixes an 'old style' function definition): http://gcc.coreland.ath.cx/r154285_2009-11-18_103532/patch-gcc-ada-init.c.diff The latest build was made with Fortran support enabled as well: http://gcc.coreland.ath.cx/r154285_2009-11-18_103532/ I've been unable to get the contrib/test_summary script to work, unfortunately. Regards, M
Impressively difficult to compile code for GNAT
Hello. I'm working on a small project to create an abstraction over directories and archives. I've managed to write some code that seems simple enough (using tagged limited types) and even though the code appears to be valid, it seems to either trigger bugs in the runtime (causing crashes on execution) or fails to compile: Both Debian GCC 4.3, GNAT GPL 2009 and FreeBSD GCC 4.4 fail with the following: pfseudo-archiver-directory.adb:24:41: wrong type for return_subtype_indication pfseudo-archiver-directory.adb:46:35: wrong type for return_subtype_indication GCC SVN (r154285) fails to build with a strange error: arc_dir_003.adb:25:32: "_master" conflicts with declaration at line 21 The output of -gnatG shows this error to be apparently incorrect: error := false; B_1 : declare _master : constant integer := system__soft_links__current_master.all; A6bM : integer renames _master; type A6b is access all pfseudo__archiver__Tarchive_tC; R7b : A6b := pfseudo__archiver__directory. The code is available here: http://git.coreland.ath.cx/gitweb.cgi?p=pfseudo/.git;a=summary $ git clone http://git.coreland.ath.cx/pfseudo/.git Configure and build with: $ echo 'gcc' > conf-adacomp $ echo 'gnatbind' > conf-adabind $ echo 'gnatlink' > conf-adalink $ make $ make tests Regards, M
Re: Impressively difficult to compile code for GNAT
Here's another case from a prototype that causes a crash on GCC 4.4 but, ironically, gives every impression of compiling and running on earlier versions (4.3, GPL 2009): with Ada.Streams.Stream_IO; with Ada.Finalization; package Archiver is type Archiver_t is tagged limited private; type Archive_t is tagged limited private; function Open_Archive (Archiver : in Archiver_t; Path : in String) return Archive_t'Class; function Stream (Archive : in Archive_t) return Ada.Streams.Stream_IO.Stream_Access; private package Stream_IO renames Ada.Streams.Stream_IO; type Archiver_t is tagged limited null record; type Archive_t is new Ada.Finalization.Limited_Controlled with record Name : access String; File : Stream_IO.File_Type; end record; end Archiver; package body Archiver is function Open_Archive (Archiver : in Archiver_t; Path : in String) return Archive_t'Class is pragma Unreferenced (Archiver); begin -- This line causes a segmentation fault. return A : Archive_t'Class := Archive_t'(Ada.Finalization.Limited_Controlled with others => <>) do A.Name := new String'(Path); Stream_IO.Open (Name => A.Name.all, File => A.File, Mode => Stream_IO.In_File); end return; end Open_Archive; function Stream (Archive : in Archive_t) return Ada.Streams.Stream_IO.Stream_Access is begin return Stream_IO.Stream (Archive.File); end Stream; end Archiver; with Ada.Text_IO; with Ada.Streams.Stream_IO; with Archiver; procedure Main is A : Archiver.Archiver_t; S : constant Ada.Streams.Stream_IO.Stream_Access := Archiver.Stream (Archiver.Open_Archive (A, "file.zip")); X : Integer; begin X := Integer'Input (S); Ada.Text_IO.Put_Line (Integer'Image (X)); end Main;
Re: Impressively difficult to compile code for GNAT
On 2009-11-21 12:09:11, Robert Dewar wrote: > By the way, a general note is that it is usually a good > idea to stay away from anonymous access types, since > for one thing, there are real issues in freeing them. Agreed, yes. In the real project, the String_Access types from the unbounded strings package was used. Regards, Mark
Re: Impressively difficult to compile code for GNAT
Bug filed here: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42140
Submitting patches for FreeBSD amd64
Hello. I opened this issue a while back: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40310 I was told that I needed to run the test suite in order for the patches to be accepted. I had trouble getting the test suite to run but have now managed (turned out to be a problem specific to my system setup). Unfortunately, there are a number of unexpected failures. I believe these failures to be specific to FreeBSD and have done my best to verify that my changes don't affect the results (in other words, I almost certain that my changes don't break gcc any more than it already is on this platform). Is this sufficient testing for the patches to be accepted?
Becoming maintainer of FreeBSD x86_64 GNAT port
Hello. I've submitted patches (and had them OK'd) to add support for FreeBSD on x86_64 [1] and, as you can see, have been told that I need SVN write access and (according the site [2]) a copyright assignment or a dedication of work to the public domain. Exactly how do I go about organising the above? The documentation linked to on the FSF site is convoluted and not helpful. I'm fully prepared to dedicate every single line I write to the public domain. I'm solely interested in getting a working compiler - not in copyright, credit, licensing or any other distractions. Regards, M [1] http://gcc.gnu.org/ml/gcc-patches/2009-07/msg00102.html [2] http://gcc.gnu.org/contribute.html#legal
Support for range-based "for" in g++?
Hi all, the page at http://gcc.gnu.org/projects/cxx0x.html suggests that g++ 4.6 supports range-based "for" (http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2930.html); however it appears that the construct is actually not recognized in 4.6, and I could find no support for it in gcc/cp/parser.c no cp-tree.def. Could it be that the support was removed when the Concepts branch was forked? (range-based for was based on concepts previously) Otherwise I would suggest that the C++0x support status page is updated accordingly. Best regards, -- rkp
Re: [ARM] Cirrus EP93xx Maverick Crunch Support - CC modes / condexec / CC_REGNUM
On Fri, 29 Jun 2007 13:31:13 +0200, "Rask Ingemann Lambertsen" <[EMAIL PROTECTED]> said: > On Fri, Jun 29, 2007 at 11:43:49AM +1000, Hasjim Williams wrote: > > The only problem would be, is that anything that clobbers CC_REGNUM > > needs to clobber CC_REGNUM_MAVERICK too (and vice-versa), since even > > though they are pseudo-registers, they both are the NZCV flags in > > pc/r15. > >Exactly. The condition code register is not a pseudo register, it is a > hard register and GCC needs to know that a MaverickCrunch comparison will > clobber the result of a previous non-MaverickCrunch comparison and vice > versa. You must keep the same CC_REGNUM because it's the same NZCV bits > in > hardware. Well, technically it is a pseudo register, since it's shared with r15/PC, and modifying PC doesn't modify the NZCV bits. But they need to be tracked separately. I don't need to modify "cc_register" in predicates.md then, like you said in http://gcc.gnu.org/ml/gcc/2007-06/msg00932.html , right? I just need to override the "arm_cond_branch" etc with the CCFP or CCMAV mode, and make sure it uses the maverick comparison codes: (define_insn "*maverick_cond_branch" [(set (pc) (if_then_else (match_operator 1 "maverick_comparison_operator" [(match_operand:CCFP 2 "cc_register" "") (const_int 0)]) (label_ref (match_operand 0 "" "")) (pc)))] "TARGET_32BIT && TARGET_HARD_FLOAT && TARGET_MAVERICK" "* if (arm_ccfsm_state == 1 || arm_ccfsm_state == 2) { arm_ccfsm_state += 2; return \"\"; } return \"b%d1\\t%l0\"; " [(set_attr "conds" "use") (set_attr "type" "branch")] ) (define_insn "*arm_cond_branch" [(set (pc) (if_then_else (match_operator 1 "arm_comparison_operator" [(match_operand 2 "cc_register" "") (const_int 0)]) (label_ref (match_operand 0 "" "")) (pc)))] "TARGET_32BIT" "* if (arm_ccfsm_state == 1 || arm_ccfsm_state == 2) { arm_ccfsm_state += 2; return \"\"; } return \"b%d1\\t%l0\"; " [(set_attr "conds" "use") (set_attr "type" "branch")] ) --- NB, I'm still not sure how I can get away without defining two maverick modes, one for FP and one for 64-bit comparisons...
FW: Payment Transfer Receipt
-- thanks Proof of payment.html Description: Binary data
gcc-10-20200315 is now available
Snapshot gcc-10-20200315 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200315/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 9d74caf21be7025db8fef997e87ebf3b85acaf4a You'll find: gcc-10-20200315.tar.xz Complete GCC SHA256=23ba681c8ae6e92ea200b4491cac1a1f8d1d7e5d9e2c98a7e0ce9132a8c8fdb2 SHA1=45c18b81eaa7c9b1c3f363903094534934bd9ad6 Diffs from 10-20200308 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200320 is now available
Snapshot gcc-8-20200320 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200320/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 2cfe18b8376faaabec23490201d846c98045a386 You'll find: gcc-8-20200320.tar.xzComplete GCC SHA256=57561e2a5c1633bb7abda82f2e2af601922a4d5307998336649b0ddeb3e009d0 SHA1=2beafafcfe7e27218e792c468f99320cd9474142 Diffs from 8-20200313 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200321 is now available
Snapshot gcc-9-20200321 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200321/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision ecce469d89e8943a021f128eca4e423d72e30c78 You'll find: gcc-9-20200321.tar.xzComplete GCC SHA256=52173db917b04458226b805a8656e50202a8a97bb5a9fbe86a14cd9b731d6f3a SHA1=eeb73c1c6db30976064577a2fd9408330238f205 Diffs from 9-20200314 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200322 is now available
Snapshot gcc-10-20200322 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200322/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 83aa5aa313af9463c6962c72f7c238f914677824 You'll find: gcc-10-20200322.tar.xz Complete GCC SHA256=945b175238ffdace82bbce03bbd55f67919fc591a7747f51d8869a714abc437b SHA1=bfe49065853b600d00f7cd06f967dcd41a8fc971 Diffs from 10-20200315 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200327 is now available
Snapshot gcc-8-20200327 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200327/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 4c36b54de7ddbcb580f4b99936af4a0195db9d2f You'll find: gcc-8-20200327.tar.xzComplete GCC SHA256=1fada838301cddbf63e51766ce804afb3c60ec0a0a8f08b0b72ab2d4fa176d15 SHA1=bf1942cb6a85b354b75cfeb593cce87858a411e0 Diffs from 8-20200320 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200328 is now available
Snapshot gcc-9-20200328 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200328/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 26df22e3909127b60afb2f5a33f750c7b0fec48a You'll find: gcc-9-20200328.tar.xzComplete GCC SHA256=21dedb9dfce077413c769f8f5f3a65fc83a84379cffe3b3ef19b40b285fd8eb9 SHA1=e22183625167e827defa4532cc76299e5381 Diffs from 9-20200321 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200329 is now available
Snapshot gcc-10-20200329 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200329/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 60c254b279e8e8443b8ad26cc46b9e4084cff66c You'll find: gcc-10-20200329.tar.xz Complete GCC SHA256=37e4a02f5a4923ed8def8a2b2866738b8844502e383d3fd3e52d206e786be92f SHA1=e89ccf5a7ae1f56070a55252c970b2ce432c24cc Diffs from 10-20200322 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200403 is now available
Snapshot gcc-8-20200403 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200403/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision b445ceec81ba3f4afad8c3ead1e58f14f1c2e146 You'll find: gcc-8-20200403.tar.xzComplete GCC SHA256=3f02b4a442a7b3f53d66cd2cace703a1a799122fc5bcf97c3869e1e9870df8bf SHA1=bdd219c6a3eb0c64be9581346ce0a6d4477266ea Diffs from 8-20200327 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200404 is now available
Snapshot gcc-9-20200404 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200404/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 46fabc24d31868066f7c302cd73c4f3351c90bde You'll find: gcc-9-20200404.tar.xzComplete GCC SHA256=f67e0a1795d866495cf2bbf00147f7d4dc0f9a521a0bf2f8bf889466a5c82eeb SHA1=d65d599fa3527c9b7de233d7b065e0a0cf7d2ff9 Diffs from 9-20200328 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200405 is now available
Snapshot gcc-10-20200405 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200405/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 2a1a0c8c0db0aae50a2cebce59bd64334cd6ba2a You'll find: gcc-10-20200405.tar.xz Complete GCC SHA256=ccd1b926c9df52a51eab42c4bbedca22f3bcfc4c80c8db8f930eecbcc7d43d31 SHA1=4793ddcdaa68f1ad21d265df69cfe622180c362d Diffs from 10-20200329 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200410 is now available
Snapshot gcc-8-20200410 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200410/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision c4f7e2bee23afa4c6b5b39cc5cb19c767cdf123a You'll find: gcc-8-20200410.tar.xzComplete GCC SHA256=a2c596991e0324a876ac7fd12a7c6d9c537d72490b7d617448f368e5ef3e9387 SHA1=8f9517795fbe8ec310f7ce5221acd306cbdec006 Diffs from 8-20200403 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200411 is now available
Snapshot gcc-9-20200411 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200411/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision d2fee90546d0f04595301af8f3786b8e1671814a You'll find: gcc-9-20200411.tar.xzComplete GCC SHA256=0b5d914820be9b9b415fcb158debc1de1d8eb6fc1fbde80d551665ffee651dea SHA1=b2c98b61308dc8b2192529320f920573362c7c8c Diffs from 9-20200404 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200412 is now available
Snapshot gcc-10-20200412 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200412/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 87be4cecfc6e42390303be1ca92bc8bc587b0bd6 You'll find: gcc-10-20200412.tar.xz Complete GCC SHA256=b8719aa9ea66672a4b158b024add6694af0798f49d7a169f989ed59ab3f9f1d4 SHA1=d1765bd798b0365f903e5d8327448c2274b3f486 Diffs from 10-20200405 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200417 is now available
Snapshot gcc-8-20200417 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200417/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 23f24c89039bd775fd27ab1d2a084d83801a594a You'll find: gcc-8-20200417.tar.xzComplete GCC SHA256=866496ae893c2be65fc84aa1854097e53b604a695c885b6fe1313d1b28305045 SHA1=b3cb5ab1d8d6ee22d184a51f6083bdbfd80be3dc Diffs from 8-20200410 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200418 is now available
Snapshot gcc-9-20200418 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200418/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision b29ea6948c8e936b07ff8befad7befee6dbfe1a5 You'll find: gcc-9-20200418.tar.xzComplete GCC SHA256=0ab209ee0f48b12a0395444d7dfba224e976c065bf2ed821e3b7933f38e475db SHA1=096defe6a4e56e9d384a3cb93e1198798b791892 Diffs from 9-20200411 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200419 is now available
Snapshot gcc-10-20200419 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200419/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 717e91dbc44c6bf55a498f45f6045191ceb10a11 You'll find: gcc-10-20200419.tar.xz Complete GCC SHA256=fa5c64eb77e4a4b44d1f732c907aaecdaa51302e823af8ca1e4ecab00dfb26ac SHA1=a011c544aa3173f5794cfb5a50f5829b9bcb836f Diffs from 10-20200412 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200424 is now available
Snapshot gcc-8-20200424 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200424/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision aadc54867cc200ad7d073222769b9de7f13b5bcd You'll find: gcc-8-20200424.tar.xzComplete GCC SHA256=1663a02a7298140be92680be6104389fc9ae2a75edc07c9dee851e66a83864f3 SHA1=f4aa2e6d0ee284ca8272fb567220eab64135eb9e Diffs from 8-20200417 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200425 is now available
Snapshot gcc-9-20200425 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200425/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision b343018b2612346e0eb87d8806785a736c4c53a8 You'll find: gcc-9-20200425.tar.xzComplete GCC SHA256=db8077ac272f35c3561575f5e7efe40fd23cb47bb6b58d728bfe7e64ac7df09a SHA1=afd48e6c3cdfffa7ca55637f2ac9e5dfc6a84e9e Diffs from 9-20200418 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200426 is now available
Snapshot gcc-10-20200426 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200426/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 29f55115583a0dab6cbac749c4f0804fd88e9536 You'll find: gcc-10-20200426.tar.xz Complete GCC SHA256=30bc86cedeb3067397f6968b5e2f894690422d7eb225ada12423ef987b400864 SHA1=b686c2e496e59267dc883136350d0d8165372136 Diffs from 10-20200419 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200430 is now available
Snapshot gcc-8-20200430 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200430/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 1b3bf1b907a89cdba07c41c47dca9cbe3d7ff453 You'll find: gcc-8-20200430.tar.xzComplete GCC SHA256=3f1d46f244114d853e84fb018df5be9621cab8c86d46a822ab194723f1cf3c7a SHA1=0413b1418457328fe999314beeb1cccefbaa3da2 Diffs from 8-20200424 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200501 is now available
Snapshot gcc-9-20200501 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200501/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision cb2c76c8b156c6d8541ddb3aa894568a2de3b02b You'll find: gcc-9-20200501.tar.xzComplete GCC SHA256=1568a6ea138b9cf5ab13c325cc5b49055c511fb979653cf9ae9211263e232dce SHA1=b2991084eb583087f22ebbc3a2c29c8986b6 Diffs from 9-20200425 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200502 is now available
Snapshot gcc-10-20200502 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200502/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 0118d0397f94c307b76aa14abec99347a93da621 You'll find: gcc-10-20200502.tar.xz Complete GCC SHA256=a72ba391b8114837403a24b0776201411530093b85c70fe56ee2a932cc1d581e SHA1=3d141b51985abcfd8476624a0324afba675f13f9 Diffs from 10-20200426 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200503 is now available
Snapshot gcc-11-20200503 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200503/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision c3185b64529529941ec99a9a26bc5552677ee7c7 You'll find: gcc-11-20200503.tar.xz Complete GCC SHA256=5dcf52a4b44b73d31039b105dab50204e6bf46c2ac17498afd1bb46504a465e8 SHA1=d0bea015b9aeba57f8a92e759fafde130517c4d3 Diffs from 11- are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200507 is now available
Snapshot gcc-8-20200507 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200507/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 49ad77be9c797562c47b74c98a2b9cbd17f6b285 You'll find: gcc-8-20200507.tar.xzComplete GCC SHA256=c1d205422aed041e3e7f29596cd8491b912484857d326d83a93e6833fe92e22c SHA1=819c75e6389292fa9fc445af585f75e96f965d77 Diffs from 8-20200430 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200508 is now available
Snapshot gcc-9-20200508 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200508/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 9a3dde5fed64b412884d17b013cb105d4f5e452c You'll find: gcc-9-20200508.tar.xzComplete GCC SHA256=7e1d57e1aabe3453dd133d0e232f9e187a124bfec723c72b5d6e91bda442377d SHA1=bee8f708a56b78565c4f5045af6bcc37c34f9c4f Diffs from 9-20200501 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200509 is now available
Snapshot gcc-10-20200509 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200509/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 986e80d520e84a85b81d2e0c378d73f3e8a93f78 You'll find: gcc-10-20200509.tar.xz Complete GCC SHA256=1170529bf9d5fb7111a1bf73593335d5bff400e22746efb80497aa96e8e3b86f SHA1=2d8dd37c00131ba58a5459de1d728958336e8afd Diffs from 10-20200502 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200510 is now available
Snapshot gcc-11-20200510 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200510/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 13a46321516e2efd3bbb1f1899c539c6724240a9 You'll find: gcc-11-20200510.tar.xz Complete GCC SHA256=46c984d68db098abace001068102f747a42d274ccade8cdc9b6f4ec4d4be66a4 SHA1=c9c968ba9bfa571b17c56e65d7f6d4dc73ec1864 Diffs from 11-20200503 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200514 is now available
Snapshot gcc-8-20200514 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200514/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 62ab8b9114b0bdae508ed76fa9028e0040d35e6b You'll find: gcc-8-20200514.tar.xzComplete GCC SHA256=93597d10dd9799b299e25a61f1a4858df5a4d29b02e6b367e9bda44b4045d62d SHA1=39a51ce7ba167ea30054bca0efa8257cc4154edc Diffs from 8-20200507 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200515 is now available
Snapshot gcc-9-20200515 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200515/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision aa237c6dceeeab1455d83a9063ab87afb4a18082 You'll find: gcc-9-20200515.tar.xzComplete GCC SHA256=05de09d64c91d2474b833928a956e11af5b49d92af01a86a9ad4dd723294fabc SHA1=904878c2815621a6a5436779bb1afae3bdb7ea5d Diffs from 9-20200508 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200516 is now available
Snapshot gcc-10-20200516 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200516/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 27d891f62633fc9d327b2cd588d268edfe32e524 You'll find: gcc-10-20200516.tar.xz Complete GCC SHA256=0d55eabdef3fb0b4dcf690b5260dd3e1fa0fed00aa56697f60467285ad47310e SHA1=cd8c0d698465f876869e72ead3969afed435a162 Diffs from 10-20200509 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200517 is now available
Snapshot gcc-11-20200517 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200517/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 2b9a271b2d0ba340234a138b7f8289bd7dca2fc5 You'll find: gcc-11-20200517.tar.xz Complete GCC SHA256=f17e9f36351a2d6e4ca54db2ab1072769704f0d09bfe6603e1beac104d3161db SHA1=e5378a4f9638c46f5b6fd128bc01cf4377b6b920 Diffs from 11-20200510 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200521 is now available
Snapshot gcc-8-20200521 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200521/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision f26cfe27e19eeb538675ffb2de0503b760662261 You'll find: gcc-8-20200521.tar.xzComplete GCC SHA256=e1eab99b6af2528bc69ec302fbaa27226aba77a694da646e21b4cd7b58325fa1 SHA1=cd25f82cb43fdab0f3c97a2b6fa71d48ab09806f Diffs from 8-20200514 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200522 is now available
Snapshot gcc-9-20200522 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200522/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision f1d34396c264ae15ba7492bd2b800c5764d92134 You'll find: gcc-9-20200522.tar.xzComplete GCC SHA256=d003d773d5c016497bda531ae4548f45bf5cd823f4381e1dd0dd21f4d94a6bbe SHA1=1f0780fe08633ebca1c8eeacb8cd393c555be55e Diffs from 9-20200515 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200523 is now available
Snapshot gcc-10-20200523 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200523/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 415d3cd72f6418d21bc4897676fc79368bfc8d36 You'll find: gcc-10-20200523.tar.xz Complete GCC SHA256=a97b3a74f377f7c98a1aa8a5fc3160b8f477ad9aca009ee18c132924ac618f85 SHA1=305b2501a7086099a94b749511ad5f4f32dadaa9 Diffs from 10-20200516 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200524 is now available
Snapshot gcc-11-20200524 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200524/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision d176184d98a00ab379ae5959aed1908a79995e6b You'll find: gcc-11-20200524.tar.xz Complete GCC SHA256=2cb0717b6e34b4085214663246599e5bbecd31824300695c103fb4b359c5b004 SHA1=9f6c656df582ac85dbfbd09a363a61ec8045f4d8 Diffs from 11-20200517 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200528 is now available
Snapshot gcc-8-20200528 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200528/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 83b84b6ef84ffc0ca25aef5c91720d8f82212a5c You'll find: gcc-8-20200528.tar.xzComplete GCC SHA256=73bb54a68f1ad2fdcfbeb2975666027ec95fd96100d6a04a6dd65c95e3267e4c SHA1=526fa43f8fd9dbbcdf789a280dbb2054b3016744 Diffs from 8-20200521 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200529 is now available
Snapshot gcc-9-20200529 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200529/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 2631d84ba7dedc3c5c9f77e7065fbfbc11876ca6 You'll find: gcc-9-20200529.tar.xzComplete GCC SHA256=9e4a344ec74e91d4d8263bc84012733f2b6d3d272a19d2059c8312cda02894f2 SHA1=01917363e16e52478f737d9aea7fd7e0c118d347 Diffs from 9-20200522 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200530 is now available
Snapshot gcc-10-20200530 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200530/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 6632f2920f08f5b45ffd1ada7006d4591ef9b172 You'll find: gcc-10-20200530.tar.xz Complete GCC SHA256=3b73dd31bd3bfeb6080a47e2e7bd41b618d19666da39af5078e1b6d1170903cc SHA1=0b711eda3b623f1c02290eb6d3a1641d1916fa64 Diffs from 10-20200523 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200531 is now available
Snapshot gcc-11-20200531 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200531/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 0edfc1fd22405ee8e946101e44cd8edc0ee12047 You'll find: gcc-11-20200531.tar.xz Complete GCC SHA256=0fd609056587f3b4e2d15d754b89fe514ef06ec88fffcc0183f1b19af8fc47c2 SHA1=e5b1285666712341b28cd8bcb62cedfde6f1ec60 Diffs from 11-20200524 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200604 is now available
Snapshot gcc-8-20200604 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200604/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision f4a45e0d85e51bd6550a82f31f70484c03332a4e You'll find: gcc-8-20200604.tar.xzComplete GCC SHA256=e53a28c9eb11846062cc5d5337ef302b318d70efa74f5f2c5687667d2edea239 SHA1=d9de2d6b5ef941a49cfc6124579ba1007180f2b0 Diffs from 8-20200528 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200605 is now available
Snapshot gcc-9-20200605 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200605/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision d82e9d37d843539127df59d7b8894e5e3baec9b9 You'll find: gcc-9-20200605.tar.xzComplete GCC SHA256=5da9903a85775f35505f70c7da88a771da7e62f9786b733867e30ff7520f87ee SHA1=7f0822bf8ea4d57f2c4bb6a1cffc3b5291158df1 Diffs from 9-20200529 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200606 is now available
Snapshot gcc-10-20200606 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200606/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 03da87235697eab344cde609d81d3f405f450c42 You'll find: gcc-10-20200606.tar.xz Complete GCC SHA256=e06067029f258fe83c243be9fc7b5a89e9c83dd7951aa842a6e95f525a4d9218 SHA1=8246cc394b7cf78558d266e83bc101d981d28ffe Diffs from 10-20200530 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200607 is now available
Snapshot gcc-11-20200607 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200607/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision f08995eefbf579acfe40f0204727d5ce388e3d0a You'll find: gcc-11-20200607.tar.xz Complete GCC SHA256=6816c715cf8f42e6580753d9b030f68dd09125e6fafca15fc44d70cd5910c999 SHA1=c0fb136962de713e1c4054ae442bba1307095b82 Diffs from 11-20200531 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200611 is now available
Snapshot gcc-8-20200611 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200611/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 6194bfb2647ce7a18556c10a091a139cd9477710 You'll find: gcc-8-20200611.tar.xzComplete GCC SHA256=5f7ced95fea961b0d59491fdf3c8d43b54c29d0110abdd85b228145eec607e1f SHA1=608282a777ef3ece780531b885768ab0cf330e90 Diffs from 8-20200604 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200612 is now available
Snapshot gcc-9-20200612 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200612/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 9322c84f46594f6689c6164418e35dad9770a56c You'll find: gcc-9-20200612.tar.xzComplete GCC SHA256=2b1b445c341f6f3e38fac3cbe9689e8da7f0a308e1bc59d63832006cf34fda80 SHA1=741acb24831f293ca14b1c578a0ea7c19e61a42a Diffs from 9-20200605 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200613 is now available
Snapshot gcc-10-20200613 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200613/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision b88498204521731f46b439b33f936009fedfdf35 You'll find: gcc-10-20200613.tar.xz Complete GCC SHA256=12eba934419605769c0872587a932705cde352f87393bc6edaaf72f8e6bd7a35 SHA1=4f6f47e895eb3d0a8aaeaebc61ba90e761056caa Diffs from 10-20200606 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200614 is now available
Snapshot gcc-11-20200614 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200614/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 3de12cc548c7a37bb68ea10937709dc6385a3b2b You'll find: gcc-11-20200614.tar.xz Complete GCC SHA256=40635ce0e16ad628ea195270923b2bcbbcb6e1e552e0a18dfc1a9c49f286a741 SHA1=2bc464e5658a1312b4fa938dbfc16952cb6c61fe Diffs from 11-20200607 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200618 is now available
Snapshot gcc-8-20200618 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200618/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 496966ffb81a32b38781cf5542cbb6f8e128a57a You'll find: gcc-8-20200618.tar.xzComplete GCC SHA256=5ad9d58f3ee09c79d3f35b1710d26985074ecfe9e1fb35fa7a448254ac293221 SHA1=ae19257d6d3ff12d28e2c1f4d0e272b1a63ce098 Diffs from 8-20200611 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200619 is now available
Snapshot gcc-9-20200619 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200619/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 4255258f6703be4726cdd44ec5b4649a649db0c8 You'll find: gcc-9-20200619.tar.xzComplete GCC SHA256=62e35fa1acbcbfa6784a053c76768844fa873b04c77bf74f582392b28174891c SHA1=2a348a4f950820470c5453e9c54741152353a8b9 Diffs from 9-20200612 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200620 is now available
Snapshot gcc-10-20200620 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200620/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 63c00a0c6543ce6d55e0ebc97ddbc1d36fb1289c You'll find: gcc-10-20200620.tar.xz Complete GCC SHA256=f1e545eeb3d12bf597d8a68fa10cab1cc785a81f3bd7b47707f70edf3f41019e SHA1=760d038d18c21ee77ed6b977e8f573e4944de082 Diffs from 10-20200613 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200621 is now available
Snapshot gcc-11-20200621 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200621/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 47ddb895df311e546a6f54345e18b8749ac50324 You'll find: gcc-11-20200621.tar.xz Complete GCC SHA256=ac7566828cba717b23e0a954ac72dff9fa39cddbaa9beb03a3dedf72bccec75c SHA1=7d50c79e8deec024615c4a4cfee9f88740459ae6 Diffs from 11-20200614 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200625 is now available
Snapshot gcc-8-20200625 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200625/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision e39a8763c4dead0f448981d9488d7b264db9da55 You'll find: gcc-8-20200625.tar.xzComplete GCC SHA256=42902a890c439f669d634072dda9f81526a6fa6ff8402133385b754df82db951 SHA1=d32fce3dc58568e79edda0925c03b66a28d821c8 Diffs from 8-20200618 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200626 is now available
Snapshot gcc-9-20200626 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200626/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 57096f5c52be8c5f0c29663234f31845bb172216 You'll find: gcc-9-20200626.tar.xzComplete GCC SHA256=b1d9f57a4a96bab106eccc64e3c10951bc7c1a3c57716c50f01beab66cd10d1d SHA1=5c1f8a6796ffef710a68bf8e53d604d6bc661593 Diffs from 9-20200619 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200627 is now available
Snapshot gcc-10-20200627 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200627/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision d12079381e25571f2d5f7bb16eaef07ee89b361b You'll find: gcc-10-20200627.tar.xz Complete GCC SHA256=5ec79868c3ec0e7a761138031466932ec2fa31309f2f3a87b5ec036e908750b0 SHA1=36d6779e19071baa67d0eae7633bc9fb19e72822 Diffs from 10-20200620 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200628 is now available
Snapshot gcc-11-20200628 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200628/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision b26fd416fb0a734d3f3e56629b6dff2e3c25dd40 You'll find: gcc-11-20200628.tar.xz Complete GCC SHA256=d4fef9327b480b852e0828d604c86b8d3fbd3b96986f713e39606fd556399351 SHA1=c116cdc929b84d1e93e75bfee643be65e824309c Diffs from 11-20200621 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200702 is now available
Snapshot gcc-8-20200702 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200702/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 10b028c2813f683a8ebab7d36c9d0d05b49a710b You'll find: gcc-8-20200702.tar.xzComplete GCC SHA256=d273724884167c123ec41a9813125e4b69651134cc2d247397cba0a5815d8bae SHA1=64f6357c216b2dedb3fcd147bd78bff61db054f8 Diffs from 8-20200625 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200703 is now available
Snapshot gcc-9-20200703 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200703/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 709faac49c7260c2e40da0a7727630ef6c72b59a You'll find: gcc-9-20200703.tar.xzComplete GCC SHA256=8ff33ecd506f7e0ca5bead24c5deed706705e7c03871b015b11bb38dbcefbfd4 SHA1=6e935cbb2c17d35fee0e0a39f2f53fe128aa66eb Diffs from 9-20200626 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200704 is now available
Snapshot gcc-10-20200704 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200704/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 56a34e3e1cbb7d3b2f9298c14d4d3a3a030c7755 You'll find: gcc-10-20200704.tar.xz Complete GCC SHA256=6282fd1eab63a70e831df1a3ad6ddefd2ed59310af980efab3789eb96b7bfe12 SHA1=0e40b4faad9686a80942b86afcd533f86ad686d4 Diffs from 10-20200627 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200705 is now available
Snapshot gcc-11-20200705 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200705/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision cc9a9229285a26ac12bc8de53237ce9c4d42f867 You'll find: gcc-11-20200705.tar.xz Complete GCC SHA256=4a14cf268b991a65443c81d5d4e30d8176a421feb945881844d89a25c6767adb SHA1=6f968eaedbcfc8ef444cfd402bbb040ae40a8741 Diffs from 11-20200628 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200709 is now available
Snapshot gcc-8-20200709 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200709/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 3081f87604c66545bad3deec07465ca3ea9a6d4e You'll find: gcc-8-20200709.tar.xzComplete GCC SHA256=631d562b82c7043e8e248562cbe3f6f8c37b8a08aa95624345394d7d62116a50 SHA1=55d60cade238bc746c3f21cd0370b62311a2e993 Diffs from 8-20200702 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200710 is now available
Snapshot gcc-9-20200710 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200710/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 00672d956d0e2ac42c34ae17bbcf9b61c5efa2a5 You'll find: gcc-9-20200710.tar.xzComplete GCC SHA256=10066601f61efc3732d7f463d930c9c5ae80ebc37a05aa6e27520f84c7183717 SHA1=927e7e037b8f0976ac42405088783718cb931055 Diffs from 9-20200703 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200711 is now available
Snapshot gcc-10-20200711 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200711/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 05fcfa4c83f94c949552c1516bc249c280b46357 You'll find: gcc-10-20200711.tar.xz Complete GCC SHA256=d4197218909b96995953609ae97d4a108c8135dc74e0dd20b23e0e98761b108c SHA1=1d3c7ee2490ebacaf4089237abe6912cd9c6a6cc Diffs from 10-20200704 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200712 is now available
Snapshot gcc-11-20200712 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200712/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 267891bd3c7ce3e16662eb2be7273f0bc8be9e7e You'll find: gcc-11-20200712.tar.xz Complete GCC SHA256=dc63acbc7b43c0cff7dd0d1bafa00f44f2273d22c3fe901c3cd2c1fd4f4e0941 SHA1=2ae618ee15e6ac79d665816a217a81e4dc083243 Diffs from 11-20200705 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200716 is now available
Snapshot gcc-8-20200716 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200716/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 385b9589e455c2e98369e4c4d4dcc75a7d0b278e You'll find: gcc-8-20200716.tar.xzComplete GCC SHA256=408ecb3c268e27bdded6baf8011c509eff05b4ab7c520e588ee5e0b423f1aa10 SHA1=cda324bd0c3da8f47fcd02bb9f78411be39e8e3d Diffs from 8-20200709 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200717 is now available
Snapshot gcc-9-20200717 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200717/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision da193dadf2882ab77527bc86c5b5307c74ec1fae You'll find: gcc-9-20200717.tar.xzComplete GCC SHA256=408a75b84eeacd6de10b0d2d45dab21cee49d5e426ef0ac66ff0f81f0bfd098d SHA1=c19c6ecd92e2c0b5979e60955e135536d1ba3f12 Diffs from 9-20200710 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200719 is now available
Snapshot gcc-11-20200719 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200719/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 2e1b25350aa96b3f5678a056d0b55bb323c452d9 You'll find: gcc-11-20200719.tar.xz Complete GCC SHA256=68375e9b63787c475af1a521498519e155ca8b5ff8b3752c58909e9c460c5a0f SHA1=4fea837c6b9795508902437c9a9838cc7f65e1c5 Diffs from 11-20200712 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200723 is now available
Snapshot gcc-8-20200723 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200723/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 41c072bded24642d6b4a38e3f5e2890c1aa8c5a1 You'll find: gcc-8-20200723.tar.xzComplete GCC SHA256=3010160a430c615563910810c6e560833dac23c8bd7d0df819ecec4c7799cae6 SHA1=376ca93a274c109c6742b9313c069c1696c75136 Diffs from 8-20200716 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200724 is now available
Snapshot gcc-9-20200724 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200724/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 6ca6eb70b0cc752feb02b6ef05170048b2efb5f1 You'll find: gcc-9-20200724.tar.xzComplete GCC SHA256=23a6c93049dbd58d87a01a30f018098b26e4c9d4215e2e59bf651b40a9f1746d SHA1=06b06dfeba3eba5c0afb759d1bda2ae0d4afbeee Diffs from 9-20200717 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200725 is now available
Snapshot gcc-10-20200725 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200725/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision d0dbe7695cf1e7a7163952797c4590cfda137541 You'll find: gcc-10-20200725.tar.xz Complete GCC SHA256=db86c481e735f5e2298934d5b3b2462e5179322ffcde38b453406a018cb4b9aa SHA1=3a535713cd814d005ada903c1afbe7cecbd00e95 Diffs from 10-20200711 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200726 is now available
Snapshot gcc-11-20200726 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200726/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 39ddfef9a5c24acf6412236f52f6716c8e0ebc9e You'll find: gcc-11-20200726.tar.xz Complete GCC SHA256=36e374c82460b24687fd05a122676171fdf0267155a16bc30dba2eb33679dcfb SHA1=02406785884bf58a35b738aea9aaedd31e985cda Diffs from 11-20200719 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200730 is now available
Snapshot gcc-8-20200730 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200730/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 4c482062f1cf1febd7571b7fd77516d9c4f38081 You'll find: gcc-8-20200730.tar.xzComplete GCC SHA256=834903adf36b2e1d29bfe86d62406804228ebfcbb3820686634a858c435e0745 SHA1=cba98ef7f4883f43c4026623413c4fd7b988ed96 Diffs from 8-20200723 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200731 is now available
Snapshot gcc-9-20200731 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200731/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 5e12156a709a3c1534ed797e65ffb03f6ba32a40 You'll find: gcc-9-20200731.tar.xzComplete GCC SHA256=4ce267947cb1724d349d261a9cee7408e04fa568fbac58758a84cafc6741dcdb SHA1=7112abe4dccd9fdad7b3554c40b1a7b4a34da471 Diffs from 9-20200724 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200801 is now available
Snapshot gcc-10-20200801 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200801/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 891bd1f15280def813bf6a363495d44951e13e04 You'll find: gcc-10-20200801.tar.xz Complete GCC SHA256=d437f1c0882407d51357e3dc63c75f2544317b5d1b30d6059bf77cecab58a6b9 SHA1=4b3f8c9ce2573ac4fbb393c11f69f10a33eea829 Diffs from 10-20200725 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200802 is now available
Snapshot gcc-11-20200802 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200802/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 6e46b3f3da5c03bc529b3690dd0995927feb9142 You'll find: gcc-11-20200802.tar.xz Complete GCC SHA256=cfa55b8c9631b54796b7c2eff1732c31fedf7d5a5310ea23e2b6ba007450493c SHA1=453d817d1728aa8cbb6d7e134c64323be86ca5f3 Diffs from 11-20200726 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200806 is now available
Snapshot gcc-8-20200806 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200806/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 8b692f8b4c0e47bc8e11d9c3ab83049f68b2edbc You'll find: gcc-8-20200806.tar.xzComplete GCC SHA256=722df911e0d0f56309f2006103927de5b7653d2dfd50f08c1b40a5802bd2af33 SHA1=12988dd5f5913ee1c7590d7dfeba76f94d34a99f Diffs from 8-20200730 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200807 is now available
Snapshot gcc-9-20200807 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200807/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 4e91af9877df9e6b28ea8e50ae9445590363d5b0 You'll find: gcc-9-20200807.tar.xzComplete GCC SHA256=700c79c63a8980277daad9207b2fceb330b7ec7568f57de8986ae2b4b083f80e SHA1=2baaae32e7e9d387f55e053a59360f89ce8cbe48 Diffs from 9-20200731 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200808 is now available
Snapshot gcc-10-20200808 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200808/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 38b240a9dc7186a51e577dd3ff73c31af3cfb0ab You'll find: gcc-10-20200808.tar.xz Complete GCC SHA256=8557aa8f5c2671e0611ba3687bb79d7660e9043bdd2b9cd5e48ed3712db336d5 SHA1=18eb6a3f1827e68990adb6ea7db0cfc0bb66b6bf Diffs from 10-20200801 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200809 is now available
Snapshot gcc-11-20200809 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200809/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 71197a5d13d0b540a9b5efe7ae2512d76386e9d1 You'll find: gcc-11-20200809.tar.xz Complete GCC SHA256=ad8bbaede781213a67e54811e639f73905427e013c8820b65eab75cfb3a856e7 SHA1=522cfb466c820929f17eb6197525f08a248d0431 Diffs from 11-20200802 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200813 is now available
Snapshot gcc-8-20200813 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200813/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision a2c5598640423f2b9679b9f3e8587fdf605f680b You'll find: gcc-8-20200813.tar.xzComplete GCC SHA256=81b3a074bf9de97b0ab5d741a0027be36786048c6dd91812e50def8dbc6bb9e8 SHA1=f9a1c7f01c222d53d212db115575bac487fa724b Diffs from 8-20200806 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200814 is now available
Snapshot gcc-9-20200814 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200814/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 3a00e557bcf09e0ffcd8fb4912617217da8e0e9c You'll find: gcc-9-20200814.tar.xzComplete GCC SHA256=96a732f1f375f50c7b5419fbaab7199728f3eb009914d33ee1328e21e384e777 SHA1=4d8cad0511b5c322f09e4a4796ee573a640ce5b9 Diffs from 9-20200807 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200815 is now available
Snapshot gcc-10-20200815 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200815/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision db6878c043d87fab80bf5906824661d54f20096b You'll find: gcc-10-20200815.tar.xz Complete GCC SHA256=38e6488bd93afbf20b21fb4f5ac6fb2775030500f09c0f4974a7acb9779c9653 SHA1=7ae4dd19139044f732d44a3ff548e7fb0bbe822b Diffs from 10-20200808 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200816 is now available
Snapshot gcc-11-20200816 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200816/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision c99116aeeb9644ebddec653ee8b19de4d38b65bd You'll find: gcc-11-20200816.tar.xz Complete GCC SHA256=6496b29cd2bc905564776c30866a47ceaeb8d86952a14e76fa108997ca9d1640 SHA1=a0f290957445ceade6610e4e8bef1f6e88dcde88 Diffs from 11-20200809 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200820 is now available
Snapshot gcc-8-20200820 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200820/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision c6b090a8c49532d59b7d5d7d9fbe753810459491 You'll find: gcc-8-20200820.tar.xzComplete GCC SHA256=e66a03bd488539aac8096fd5fe20583c4b973f0dd6e8948ff627beff2b840917 SHA1=960782bc71f68b7a984324acc8aac1d563f185f3 Diffs from 8-20200813 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-9-20200821 is now available
Snapshot gcc-9-20200821 is now available on https://gcc.gnu.org/pub/gcc/snapshots/9-20200821/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 9 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-9 revision 0fc33daacbdf993ab0d5830b0af3468b0df7c187 You'll find: gcc-9-20200821.tar.xzComplete GCC SHA256=f1b58c164457214f7d9e645505132daf3fbe7b814f049926a32f01d74a5182f5 SHA1=c569ef03efd0c88eee08889cc7e7c0f86cddb365 Diffs from 9-20200814 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-9 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-10-20200822 is now available
Snapshot gcc-10-20200822 is now available on https://gcc.gnu.org/pub/gcc/snapshots/10-20200822/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 10 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-10 revision 5f877a1f6c962f824d430a6c2b8079b0464fdb7f You'll find: gcc-10-20200822.tar.xz Complete GCC SHA256=7f78542b23e194b88d37ee1be33c06b8b8c2e27a60a21b434fc8b6b125619d5d SHA1=cac9b4e56fd11ec74c3b99ce1e970887bccc3eb5 Diffs from 10-20200815 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-10 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-11-20200823 is now available
Snapshot gcc-11-20200823 is now available on https://gcc.gnu.org/pub/gcc/snapshots/11-20200823/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 11 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch master revision 87c753ac241f25d222d46ba1ac66ceba89d6a200 You'll find: gcc-11-20200823.tar.xz Complete GCC SHA256=c250be6a94fb32a8836b56ad43f71030b5bb9c454a28fdef3eafc5d39a9e86d9 SHA1=23bf26e1535daa19317c48cc6089c347b8dca152 Diffs from 11-20200816 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-11 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.
gcc-8-20200827 is now available
Snapshot gcc-8-20200827 is now available on https://gcc.gnu.org/pub/gcc/snapshots/8-20200827/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 git branch with the following options: git://gcc.gnu.org/git/gcc.git branch releases/gcc-8 revision 7edec20c8f9a97b3c036158212b76211b7fe42df You'll find: gcc-8-20200827.tar.xzComplete GCC SHA256=88c84e8687a22af8a9f1493b2742b6913621529ce2fbdd057d2749734cfc14d5 SHA1=7f84c08d7feed2462bc07ee4327baed88af19203 Diffs from 8-20200820 are available in the diffs/ subdirectory. When a particular snapshot is ready for public consumption the LATEST-8 link is updated and a message is sent to the gcc list. Please do not use a snapshot before it has been announced that way.