Date: Tue, 25 Feb 2020 16:13:36 +0000 (UTC) From: Gerald Pfeifer <gerald@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527096 - in head/lang/gcc10-devel: . files Message-ID: <202002251613.01PGDaqT088503@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gerald Date: Tue Feb 25 16:13:36 2020 New Revision: 527096 URL: https://svnweb.freebsd.org/changeset/ports/527096 Log: Update to the 20200223 snapshot of GCC 10.0.1. There's a warning (treated as an error) on 32-bit platforms which I am working on with upstream. files/patch-value-prof.c-buildfix is a temporary band aid to allow the build to complete. Added: head/lang/gcc10-devel/files/patch-value-prof.c-buildfix (contents, props changed) Modified: head/lang/gcc10-devel/Makefile head/lang/gcc10-devel/distinfo Modified: head/lang/gcc10-devel/Makefile ============================================================================== --- head/lang/gcc10-devel/Makefile Tue Feb 25 15:59:06 2020 (r527095) +++ head/lang/gcc10-devel/Makefile Tue Feb 25 16:13:36 2020 (r527096) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 10.0.1.s20200216 +PORTVERSION= 10.0.1.s20200223 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc10-devel/distinfo ============================================================================== --- head/lang/gcc10-devel/distinfo Tue Feb 25 15:59:06 2020 (r527095) +++ head/lang/gcc10-devel/distinfo Tue Feb 25 16:13:36 2020 (r527096) @@ -1,3 +1,3 @@ -TIMESTAMP = 1581895024 -SHA256 (gcc-10-20200216.tar.xz) = f7f129d4884eb9f7173018be2188c76e1f4bf0795a79c244cf6b6964e153961d -SIZE (gcc-10-20200216.tar.xz) = 72087952 +TIMESTAMP = 1582534320 +SHA256 (gcc-10-20200223.tar.xz) = 0815e475f95d0855dae1f7819007d753a4ad715a9799cd8db6c9f3205cd380c1 +SIZE (gcc-10-20200223.tar.xz) = 72126292 Added: head/lang/gcc10-devel/files/patch-value-prof.c-buildfix ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gcc10-devel/files/patch-value-prof.c-buildfix Tue Feb 25 16:13:36 2020 (r527096) @@ -0,0 +1,15 @@ +This is a temporary hack of mine to unbreak the build; I'm working with +upstream. -- Gerald + +--- UTC +--- gcc/value-prof.c.orig 2020-02-23 22:32:16.000000000 +0000 ++++ gcc/value-prof.c 2020-02-24 11:02:12.664189000 +0000 +@@ -266,7 +266,7 @@ + if (hist->hvalue.counters) + { + fprintf (dump_file, " all: %" PRId64 "%s, values: ", +- abs ((int64_t) hist->hvalue.counters[0]), ++ ((int64_t) hist->hvalue.counters[0]), + hist->hvalue.counters[0] < 0 + ? " (values missing)": ""); + for (unsigned i = 0; i < GCOV_TOPN_VALUES; i++)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002251613.01PGDaqT088503>