This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: multiple versions of libstdc++
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: Wojtek Michalik <wojmichal at poczta dot onet dot pl>
- Cc: libstdc++ at gcc dot gnu dot org
- Date: Thu, 1 Sep 2005 12:23:14 -0500
- Subject: Re: multiple versions of libstdc++
- References: <1125570691.5392.2.camel@localhost.localdomain>
> I can not figure out how to force g++ to use v3.4 headers and link my
> programs against 3.4 version instead of v3.3 ( default behavior ).
You should not do this. The compiler and library changed ABI between 3.3
and 3.4. Linking 3.3 to 3.4 is a mistake, and likewise for linking 3.4
to 3.3.
-benjamin