diff options
author | gerald <gerald@FreeBSD.org> | 2016-12-16 09:50:46 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2016-12-16 09:50:46 +0800 |
commit | df726f550c59d1bb52f443e72fbc7a6fb97e831e (patch) | |
tree | 711f0b32585d6717ef2dedb6ded1fbd7675e1883 | |
parent | 35617022a8080539e48cb722868e1d926441e196 (diff) | |
download | freebsd-ports-gnome-df726f550c59d1bb52f443e72fbc7a6fb97e831e.tar.gz freebsd-ports-gnome-df726f550c59d1bb52f443e72fbc7a6fb97e831e.tar.zst freebsd-ports-gnome-df726f550c59d1bb52f443e72fbc7a6fb97e831e.zip |
Update to the 20161208 snapshot of GCC 6.
Remove files/patch-unwind-ia64.h since we have not been supporting ia64
with this release for a while (ONLY_FOR_ARCHS has not been covering ia64).
-rw-r--r-- | lang/gcc6-devel/Makefile | 2 | ||||
-rw-r--r-- | lang/gcc6-devel/distinfo | 6 | ||||
-rw-r--r-- | lang/gcc6-devel/files/patch-unwind-ia64.h | 21 |
3 files changed, 4 insertions, 25 deletions
diff --git a/lang/gcc6-devel/Makefile b/lang/gcc6-devel/Makefile index 450c0b7657f0..1afb8ad02bb2 100644 --- a/lang/gcc6-devel/Makefile +++ b/lang/gcc6-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 6.2.1.s20161208 +PORTVERSION= 6.2.1.s20161215 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc6-devel/distinfo b/lang/gcc6-devel/distinfo index 93f4b6ed3509..8f883631722c 100644 --- a/lang/gcc6-devel/distinfo +++ b/lang/gcc6-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1481468685 -SHA256 (gcc-6-20161208.tar.bz2) = 02204cd43e5fa9578d3a253fd676ceeb4a3b0302a40bcd6c3d488b913698d855 -SIZE (gcc-6-20161208.tar.bz2) = 95580455 +TIMESTAMP = 1481843649 +SHA256 (gcc-6-20161215.tar.bz2) = 5c447c2666cd85f7b6bd23ffbaf3a9706e575e2ac4951683c61b739c9514e030 +SIZE (gcc-6-20161215.tar.bz2) = 95669246 diff --git a/lang/gcc6-devel/files/patch-unwind-ia64.h b/lang/gcc6-devel/files/patch-unwind-ia64.h deleted file mode 100644 index 82e103a543c5..000000000000 --- a/lang/gcc6-devel/files/patch-unwind-ia64.h +++ /dev/null @@ -1,21 +0,0 @@ -2012-12-17 Gerald Pfeifer <gerald@pfeifer.com> - Anton Shterenlikht <mexas@bristol.ac.uk> - - PR target/45650 - * config/ia64/unwind-ia64.h: Do not mark _Unwind_FindTableEntry - hidden on FreeBSD. - ---- UTC -Index: libgcc/config/ia64/unwind-ia64.h -=================================================================== ---- libgcc/config/ia64/unwind-ia64.h -+++ libgcc/config/ia64/unwind-ia64.h (working copy) -@@ -49,4 +49,7 @@ - extern struct unw_table_entry * - _Unwind_FindTableEntry (void *pc, unw_word *segment_base, - unw_word *gp, struct unw_table_entry *ent) -- __attribute__ ((__visibility__ ("hidden"))); -+#ifndef __FreeBSD__ -+ __attribute__ ((__visibility__ ("hidden"))) -+#endif -+ ; |