This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: Getting gcc and libstdc++ 7 to live happily together
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: libstdc++ at gcc dot gnu dot org
- Date: Thu, 9 Dec 2004 22:03:56 -0600
- Subject: Re: Getting gcc and libstdc++ 7 to live happily together
- Organization: Red Hat / Chicago
- References: <41B8F028.508@cs.york.ac.uk>
>I was just wondering, does anyone have any advice on getting gcc-cvs and
>libstdc++ v7 to live happily together? At the moment I'm doing a quite
>messy moving around of directories to compile and moving them back to do
>cvs-update. Unfortunatly I just got myself in a horrible mess and now I
>think, surely there must be a nicer way of doing this?
check out gcc
check out libstdcxx_so_7
cd gcc
mv libstdc++-v3 libstdc++v3.cvs
mv ../libstdc++-v3 ./libstdc++v3.so_7
ln -s libstdc++-v3.cvs libstdc++-v3 for so_6 builds
ln -s libstdc++-v3.so_7 for so_7 builds
cvs updates in gcc will just work
-benjamin