Manfred Huber <[EMAIL PROTECTED]> writes:
| > Manfred Huber <[EMAIL PROTECTED]> writes:
| >
| > | I added -fpermissive and it worked. Many Thanks. But now I got another error
| > | with this output:
| >
| > Is this from a clean make?
| >
| > If not do a:
| >
| > make distclean
| > make
| >
| > and see if that helps.
| >
| > This looks like a library problem.
| >
| > Lgb
|
| It doesn't help. I tried it with Solaris 2.5 and 2.6. So I installed gcc and
| libstdc++ once again and it changed a little bit. Now I got an error with
| src/mathed/formula.C. The output from make is at the end of the mail. Maybe it
| is a problem with the C++-headerfiles from gcc and libstdc++. I would be very
| happy for help.
You have not setup your system to use the new libstdc++ correctly, you
also have to compile with exceptions turned on.
This is the config options I use when using gnu libstdc++:
CPPFLAGS="-nostdinc++ -isystem /local/H-libstdc++/include/g++-v3" \
CXXFLAGS="-O0" LDFLAGS="-L/local/H-libstdc++/lib" ../configure
Lgb