Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jun 2012 06:43:45 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r236601 - stable/9/lib/libc++
Message-ID:  <201206050643.q556hj2l094144@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Tue Jun  5 06:43:45 2012
New Revision: 236601
URL: http://svn.freebsd.org/changeset/base/236601

Log:
  MFC r236444:
  
  Install libcxxrt's C++ ABI and unwind headers.  This is done in libc++'s
  Makefile, so these headers go into the same destination directory as
  libc++'s own headers, currently /usr/include/c++/v1.

Modified:
  stable/9/lib/libc++/Makefile
Directory Properties:
  stable/9/lib/libc++/   (props changed)

Modified: stable/9/lib/libc++/Makefile
==============================================================================
--- stable/9/lib/libc++/Makefile	Tue Jun  5 06:41:47 2012	(r236600)
+++ stable/9/lib/libc++/Makefile	Tue Jun  5 06:43:45 2012	(r236601)
@@ -138,10 +138,17 @@ STD_HEADERS=	__bit_reference\
 		utility\
 		valarray\
 		vector
+RT_HEADERS=	cxxabi.h\
+		unwind.h\
+		unwind-arm.h\
+		unwind-itanium.h
 
 .for hdr in ${STD_HEADERS}
 STD+=		${HDRDIR}/${hdr}
 .endfor
+.for hdr in ${RT_HEADERS}
+STD+=		${LIBCXXRTDIR}/${hdr}
+.endfor
 STDDIR=		${CXXINCLUDEDIR}
 
 EXT_HEADERS=	__hash\



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