
Jonathan Wakely wrote:
On Tue, Jul 06, 2004 at 02:50:55PM +0200, Joaqu?n M? L?pez Mu?oz wrote:
A test of mine is failing in the gcc-2.95.3-linux toolset with the following:
ostream: No such file or directory
which, I guess, indicates that the std library used by this toolset does not have a <ostream> header. Digging through the regression logs, seems like the library being used is SGI's.
The gcc-2.95.3-linux toolset uses gcc 2.95.3 without STLport. <ostream> and other headers are missing from the standard library implementation shipped with gcc 2. The gcc-2.95.3-stlport-4.5.3-linux toolset uses STLPort. There a file named ostream in includes/stlport. There's a switch (_STLP_OWN_IOSTREAMS) that selects between native and STLPort's <ostream>. The STLPort library on the test system is compiled to use STLPort's own stream implementation. HTH, m