This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: Configury changes to build libstdc++ headers
- To: "Stephen M. Webb" <stephen at bregmasoft dot com>
- Subject: Re: Configury changes to build libstdc++ headers
- From: Benjamin Kosnik <bkoz at redhat dot com>
- Date: Fri, 18 May 2001 21:35:44 -0700 (PDT)
- cc: libstdc++ at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
Wow. I didn't think you were ready to go on this.
A couple of things immediately.
stamp-std: ${std_headers}
@if [ ! -d "${std_builddir}" ]; then \
mkdir -p ${std_builddir} ;\
fi ;\
cp $? ${std_builddir} ;\
echo `date` >stamp-std
We need to get rid of explicit rules to install headers if at all possible.
Look at what libsupc++ does to install headers, and try to match it. It's
the most correct solution.
headers = \
exception new typeinfo cxxabi.h exception_defines.h
glibcppinstalldir = @gxx_include_dir@
glibcppinstall_HEADERS = $(headers)
thanks,
benjamin