Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2012 04:47:15 +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: r309143 - in head/lang/gcc48: . files
Message-ID:  <201212180447.qBI4lFNP056383@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Tue Dec 18 04:47:15 2012
New Revision: 309143
URL: http://svnweb.freebsd.org/changeset/ports/309143

Log:
  Reintroduce, adjusted to current upstream changes, my hack to get
  to the unwinder interface to get FreeBSD/ia64 build. [1]
  
  Update to the 20121216 snapshot of GCC 4.8.0.
  
  Submitted by:	Anton Shterenlikht <mexas@bristol.ac.uk> [1]

Added:
  head/lang/gcc48/files/patch-unwind-ia64.h   (contents, props changed)
Modified:
  head/lang/gcc48/Makefile
  head/lang/gcc48/distinfo

Modified: head/lang/gcc48/Makefile
==============================================================================
--- head/lang/gcc48/Makefile	Tue Dec 18 04:14:22 2012	(r309142)
+++ head/lang/gcc48/Makefile	Tue Dec 18 04:47:15 2012	(r309143)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gcc
-PORTVERSION=	4.8.0.20121209
+PORTVERSION=	4.8.0.20121216
 CATEGORIES=	lang java
 MASTER_SITES=	${MASTER_SITE_GCC}
 MASTER_SITE_SUBDIR=	snapshots/${VERSIONSTRING}

Modified: head/lang/gcc48/distinfo
==============================================================================
--- head/lang/gcc48/distinfo	Tue Dec 18 04:14:22 2012	(r309142)
+++ head/lang/gcc48/distinfo	Tue Dec 18 04:47:15 2012	(r309143)
@@ -1,4 +1,4 @@
-SHA256 (gcc-4.8-20121209.tar.bz2) = a76e783d11cc879be10af56e6b4219b373eee1c8b0cd651573830ae2f814e24a
-SIZE (gcc-4.8-20121209.tar.bz2) = 81893352
+SHA256 (gcc-4.8-20121216.tar.bz2) = f813e9aa9da33dca76c4bef52fe4cdc5edccffeed2ffaceaaa7efb1938afb22c
+SIZE (gcc-4.8-20121216.tar.bz2) = 81933875
 SHA256 (ecj-4.5.jar) = 98fd128f1d374d9e42fd9d4836bdd249c6d511ebc6c0df17fbc1b9df96c3d781
 SIZE (ecj-4.5.jar) = 1470676

Added: head/lang/gcc48/files/patch-unwind-ia64.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/gcc48/files/patch-unwind-ia64.h	Tue Dec 18 04:47:15 2012	(r309143)
@@ -0,0 +1,20 @@
+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.
+
+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
++			;



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