aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2021-11-24 20:20:30 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2021-11-24 21:30:11 +0000
commitfffbd3d8041bb15fcddce3205c37ec5869e8c5e5 (patch)
tree1a19cb5c577ccd7dbbd35f7893c7111b3f37ab76
parentbf143897d312fc861061eeca33d4cf3e777b6728 (diff)
downloadports-fffbd3d8041bb15fcddce3205c37ec5869e8c5e5.tar.gz
ports-fffbd3d8041bb15fcddce3205c37ec5869e8c5e5.zip
lang/gcc12-devel: Update to the 20211121 snapshot of GCC 12.0.0
We addressed the libsanitizer build issue slightly differently upstream, and files/patch-libsanitzer-buildfix can be removed.
-rw-r--r--lang/gcc12-devel/Makefile2
-rw-r--r--lang/gcc12-devel/distinfo6
-rw-r--r--lang/gcc12-devel/files/patch-libsanitzer-buildfix21
3 files changed, 4 insertions, 25 deletions
diff --git a/lang/gcc12-devel/Makefile b/lang/gcc12-devel/Makefile
index 0ec5869d92a9..689dadbc5cba 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.s20211114
+PORTVERSION= 12.0.0.s20211121
CATEGORIES= lang
MASTER_SITES= GCC/snapshots/${DIST_VERSION}
PKGNAMESUFFIX= ${SUFFIX}-devel
diff --git a/lang/gcc12-devel/distinfo b/lang/gcc12-devel/distinfo
index 48834fa32e24..5ddc5667b777 100644
--- a/lang/gcc12-devel/distinfo
+++ b/lang/gcc12-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1637501854
-SHA256 (gcc-12-20211114.tar.xz) = 6f63c011a427228ccf3d3503852f5139c2e3281c574df861c2afab21086eee47
-SIZE (gcc-12-20211114.tar.xz) = 77458344
+TIMESTAMP = 1637785265
+SHA256 (gcc-12-20211121.tar.xz) = ffcdc0a91939fe2202fbcc91ed7abea61b509e3c207ac439867cb4523f601240
+SIZE (gcc-12-20211121.tar.xz) = 77512024
diff --git a/lang/gcc12-devel/files/patch-libsanitzer-buildfix b/lang/gcc12-devel/files/patch-libsanitzer-buildfix
deleted file mode 100644
index 6f7049781912..000000000000
--- a/lang/gcc12-devel/files/patch-libsanitzer-buildfix
+++ /dev/null
@@ -1,21 +0,0 @@
-The latest libsanitizer update added specific support for FreeBSD
-which includes <md5.h>. Alas GCC features it's own <md5.h> which
-is picked up, but does not provide everything necessary - boom.
-
-I have adjusted GCC's <md5.h> to accomodate for that and we now only
-need to activate that.
-
-Upstream bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102675
-
---- UTC
---- libsanitizer/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
-+++ libsanitizer/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
-@@ -15,6 +15,8 @@
-
- #if SANITIZER_FREEBSD
-
-+#define USE_SYSTEM_MD5
-+
- #include <sys/capsicum.h>
- #include <sys/consio.h>
- #include <sys/filio.h>