Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Oct 2012 00:35:14 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r241214 - in head: . lib/clang/include
Message-ID:  <201210050035.q950ZERI052728@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Fri Oct  5 00:35:13 2012
New Revision: 241214
URL: http://svn.freebsd.org/changeset/base/241214

Log:
  Do not install incomplete unwind.h from clang.  This header file was meant
  to be a wrapper for the canonical system header file.  Unfortunately, we do
  not have one (yet) and some times it is causing weird failures when clang
  is used for building ports.  More complete and correct file will come from
  libcxxrt in the future.
  
  Discussed with:	dim, kib, theraven
  MFC after:	1 week

Modified:
  head/ObsoleteFiles.inc
  head/lib/clang/include/Makefile

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc	Thu Oct  4 22:56:15 2012	(r241213)
+++ head/ObsoleteFiles.inc	Fri Oct  5 00:35:13 2012	(r241214)
@@ -38,6 +38,8 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20121004: remove incomplete unwind.h
+OLD_FILES+=usr/include/clang/3.2/unwind.h
 # 20120908: pf cleanup
 OLD_FILES+=usr/include/net/if_pflow.h
 # 20120816: new clang import which bumps version from 3.1 to 3.2

Modified: head/lib/clang/include/Makefile
==============================================================================
--- head/lib/clang/include/Makefile	Thu Oct  4 22:56:15 2012	(r241213)
+++ head/lib/clang/include/Makefile	Fri Oct  5 00:35:13 2012	(r241214)
@@ -25,7 +25,6 @@ INCS=	altivec.h \
 	popcntintrin.h \
 	smmintrin.h \
 	tmmintrin.h \
-	unwind.h \
 	wmmintrin.h \
 	x86intrin.h \
 	xmmintrin.h \



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