[Prev][Next][Index]
Re: Sage error.
- Date: Mon, 8 Apr 1996 09:25:57 -0500 (EST)
- From: "Pete Beckman" <beckman@cs.indiana.edu>
- To: rsingh@valhalla.cs.wright.edu, sage-bugs@extreme.indiana.edu
- Subject: Re: Sage error.
- Sender: owner-sage-bugs@extreme.indiana.edu
Try including:
sage/target/include/pcxx.h at the begining of the file, before
the other include files. The problem is that g++ assumes __wchar_t
is a known type by the compiler. That is their bug. You must:
#ifdef __GNUG__
typedef int __wchar_t;
#endif
-Pete