Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Oct 2021 06:53:28 GMT
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 1194fe2e2c18 - main - lang/gcc12-devel: Update to the 20210926 snapshot of GCC 12.0.0
Message-ID:  <202110070653.1976rSX5038724@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by gerald:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1194fe2e2c18d7c657a04517047d72ac48ab4709

commit 1194fe2e2c18d7c657a04517047d72ac48ab4709
Author:     Gerald Pfeifer <gerald@FreeBSD.org>
AuthorDate: 2021-10-07 06:52:50 +0000
Commit:     Gerald Pfeifer <gerald@FreeBSD.org>
CommitDate: 2021-10-07 06:53:10 +0000

    lang/gcc12-devel: Update to the 20210926 snapshot of GCC 12.0.0
    
    files/patch-bootstrap-gcc-gcc.c came from upstream and is part of
    that snapshot now, so remove it.
---
 lang/gcc12-devel/Makefile                        |  2 +-
 lang/gcc12-devel/distinfo                        |  6 +--
 lang/gcc12-devel/files/patch-bootstrap-gcc-gcc.c | 47 ------------------------
 3 files changed, 4 insertions(+), 51 deletions(-)

diff --git a/lang/gcc12-devel/Makefile b/lang/gcc12-devel/Makefile
index 5f5532654f68..63ae6f529a12 100644
--- a/lang/gcc12-devel/Makefile
+++ b/lang/gcc12-devel/Makefile
@@ -1,7 +1,7 @@
 # Created by: Gerald Pfeifer <gerald@FreeBSD.org>
 
 PORTNAME=	gcc
-PORTVERSION=	12.0.0.s20210919
+PORTVERSION=	12.0.0.s20210926
 CATEGORIES=	lang
 MASTER_SITES=	GCC/snapshots/${DIST_VERSION}
 PKGNAMESUFFIX=	${SUFFIX}-devel
diff --git a/lang/gcc12-devel/distinfo b/lang/gcc12-devel/distinfo
index b317b72ea341..b7a8cf785ad7 100644
--- a/lang/gcc12-devel/distinfo
+++ b/lang/gcc12-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1632516336
-SHA256 (gcc-12-20210919.tar.xz) = 3f046195d02225d4f072b3a50efca4a791c00f369bfb5c6cf68d82bcffeba988
-SIZE (gcc-12-20210919.tar.xz) = 76962072
+TIMESTAMP = 1633336964
+SHA256 (gcc-12-20210926.tar.xz) = bf0225ac83a4c586221c0daa16583769e1bc9e67af9c5b0ebeee3b5f01b1117c
+SIZE (gcc-12-20210926.tar.xz) = 77037992
diff --git a/lang/gcc12-devel/files/patch-bootstrap-gcc-gcc.c b/lang/gcc12-devel/files/patch-bootstrap-gcc-gcc.c
deleted file mode 100644
index 7f896ccd273d..000000000000
--- a/lang/gcc12-devel/files/patch-bootstrap-gcc-gcc.c
+++ /dev/null
@@ -1,47 +0,0 @@
-commit abdf63d782cba82b5ecf264248518cbb065650ed
-Author: Iain Sandoe <iain@sandoe.co.uk>
-Date:   Mon Sep 20 07:41:49 2021 +0100
-
-    Driver: Fix bootstrap with DEFAULT_{ASSEMBLER,LINKER,DSYMUTIL}.
-    
-    The patch at r12-3662-g5fee8a0a9223d factored the code for
-    printing the names of programes into a separate function.
-    However the moved editions that print out the names of the
-    assembler, linker (and dsymutil on Darwin) when those are
-    specified at configure-time were not adjusted accordingly,
-    leading to a bootstrap fail.
-    
-    Fixed by testing specifically for execute OK, since we know
-    these are programs.
-    
-    Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
-    
-    gcc/ChangeLog:
-    
-            * gcc.c: Test for execute OK when we find the
-            programs for assembler linker and dsymutil and those
-            were specified at configure-time.
-
---- gcc/gcc.c
-+++ gcc/gcc.c
-@@ -3083,17 +3083,17 @@ find_a_program (const char *name)
-   /* Do not search if default matches query. */
- 
- #ifdef DEFAULT_ASSEMBLER
--  if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, mode) == 0)
-+  if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, X_OK) == 0)
-     return xstrdup (DEFAULT_ASSEMBLER);
- #endif
- 
- #ifdef DEFAULT_LINKER
--  if (! strcmp (name, "ld") && access (DEFAULT_LINKER, mode) == 0)
-+  if (! strcmp (name, "ld") && access (DEFAULT_LINKER, X_OK) == 0)
-     return xstrdup (DEFAULT_LINKER);
- #endif
- 
- #ifdef DEFAULT_DSYMUTIL
--  if (! strcmp (name, "dsymutil") && access (DEFAULT_DSYMUTIL, mode) == 0)
-+  if (! strcmp (name, "dsymutil") && access (DEFAULT_DSYMUTIL, X_OK) == 0)
-     return xstrdup (DEFAULT_DSYMUTIL);
- #endif
- 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110070653.1976rSX5038724>