Mail Archives: djgpp/1998/12/31/03:01:53
On Thu, 31 Dec 1998, Fogbank wrote:
> I'm using GCC 2.8.1 and I found that, while gxx supports exceptions,
> gcc doesn't (and I also have to add -lstdcxx). Is this true?
This cannot possibly be true. Both gcc and gxx are just drivers; the
actual compiler (which supports exceptions) is cc1plus.exe, and it
should be invoked by either gcc or gxx to compile C++ programs.
The most probable cause of your trouble is some installation snafu.
For example, you might be mixing executables from different GCC
versions. Add -v to the compilation/link command switches, and watch
the versions printed by all compiler passes.
> besides having to rename libstdcxx.a to libstdcx.a (no long names?)
This is another installation mess-up. See section 8.7 of the DJGPP
FAQ list for explanation of reasons and description of solutions.
- Raw text -