]> www.ginac.de Git - ginac.git/commitdiff
- Explain what's going on with <sstream>.
authorRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Thu, 20 Sep 2001 23:07:15 +0000 (23:07 +0000)
committerRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Thu, 20 Sep 2001 23:07:15 +0000 (23:07 +0000)
INSTALL

diff --git a/INSTALL b/INSTALL
index ed1c8c50f4f7a767ba00fcc345d74f6f17c9fc5b..ee1eb2b078956ad5c5f2cdfe1dfb8922a9d3f96d 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -80,3 +80,13 @@ libreadline and maybe libreadline-dev.  If your system's vendor
 doesn't supply such packages, go to <ftp://ftp.gnu.org/gnu/readline/>
 and compile it yourself.
 
 doesn't supply such packages, go to <ftp://ftp.gnu.org/gnu/readline/>
 and compile it yourself.
 
+Problems with missing <sstream>
+-------------------------------
+
+GCC-2.95.2 and earlier don't have support for this header.  GiNaC can use
+<strstream> instead, but this may cause some trouble later.  GCC-3.0 has a
+completely new implementation of the STL-headers (libstdc++-v3) and there,
+standard-conforming support for <sstream> is present.  If you can't upgrade
+your compiler we recommend using the libstdc++-v2 <sstream> header by
+Magnus Fromreide.  It was posted to the gcc-patches mailing list on
+November 21 2000: <http://gcc.gnu.org/ml/gcc-patches/2000-11/msg01152.html>.