This is the mail archive of the
libstdc++@sourceware.cygnus.com
mailing list for the libstdc++ project.
Re: Using libstdc++-2.90.4 with egcs 1.1.2
- To: Gabriel Dos_Reis <Gabriel.Dos_Reis@sophia.inria.fr>
- Subject: Re: Using libstdc++-2.90.4 with egcs 1.1.2
- From: Gerald Gutierrez <gutier@intergate.bc.ca>
- Date: Tue, 4 May 1999 21:59:01 -0700
- Cc: egcs@egcs.cygnus.com, libstdc++@sourceware.cygnus.com
- Organization: Home
- References: <xajlnf4kbpw.fsf@korrigan.inria.fr>
- Reply-To: gutier@intergate.bc.ca
> | I tried to install libstdc++ into the same directory as egcs. This caused
> | an overwrite of the libstdc++ shared library and an addition of g++-v3 in
> | the include directory. I set my CPLUS_INCLUDE_PATH to point to that
> | directory, and things compiled file, but I get link errors with two
> | symbols: bad_alloc and something else ( can't remember now ).
>
> 'exception table missing'?
Yes that's it!
> You have to compile libgcc with the following options:
> -fnew-abi -fno-honor-std
Please excuse my complete ignorance but this is my first time compiling a
compiler (still doesn't "feel" right to me) and compiling libstdc++. I
don't see libgcc in libstdc++; is it a part of egcs? How do I go about
adding the options you mentioned above into the build process? Currently I
only do a ./configure --prefix=$whereever ; gmake ; gmake install.
Thanks for all your help :)