svn commit: r241214 - in head: . lib/clang/include

Jung-uk Kim jkim at FreeBSD.org
Fri Oct 5 00:35:14 UTC 2012


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 \


More information about the svn-src-all mailing list