diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-08-09 07:33:39 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-08-09 07:33:39 +0000 |
commit | 8901ac210e5857b0a957f1bcee9906e0fb8fa707 (patch) | |
tree | 810fd814c4d1fcc52243e90ea7ac6ac2416bdda2 /libstdc++-v3/docs | |
parent | 5c614849364bcaa926bf2017a69ac6569a14dfa0 (diff) | |
download | gcc-8901ac210e5857b0a957f1bcee9906e0fb8fa707.zip gcc-8901ac210e5857b0a957f1bcee9906e0fb8fa707.tar.gz gcc-8901ac210e5857b0a957f1bcee9906e0fb8fa707.tar.bz2 |
[multiple changes]
2000-08-09 Benjamin Kosnik <bkoz@purist.soma.redhat.com>
Preliminary wchar_t implementation, with trivial encodings.
* docs/configopts.html: Add bits about canonical configure option
checking.
* testsuite/27_io/iostream_objects.cc: Replace this file (which
has newly-declared-illegal mixing of wide/narrow stdstreams) with...
* testsuite/27_io/narrow_stream_objects.cc: New file.
* testsuite/27_io/wide_stream_objects.cc: New file.
* bits/fstream.tcc (underflow): Temporarily hack a solution
together that writes from the external file to the internal
buffers. This removes codecvt from the loop, and is incorrect.
(_M_really_overflow): Same here.
* testsuite/21_strings/inserters_extractors.cc (test05): Tweaks.
2000-08-08 Benjamin Kosnik <bkoz@cygnus.com>
Ulrich Drepper <drepper@cygnus.com>
* config/c_io_libio.h: Tweak.
* config/c_io_libio_codecvt.c: New file.
* libio/Makefile.am: Add c_codecvt.c.
* libio/Makefile.in: Regenerate.
* libio/genops.c (_IO_unbuffer_write): Don't call _IO_SETBUF if the
stream is not orientated.
* acinclude.m4: Add config/c_io_libio_codecvt.c dummy file, until
encoding gets fleshed out.
* bits/basic_file.h: Add specialization declarations.
* config/c_io_libio.cc: Add specializations for pbackfail, uflow.
* config/c_io_libio.h: Add __c_wfile_type.
* bits/basic_file.h: Add _M_wfile.
* config/c_io_libio.cc (__basic_file<char>): Initialize the
streams without setting the orientation of the underlying FILE to
either wide or narrow.
(__basic_file<wchar_t>)): Enable tricky wchar_t io bits.
From-SVN: r35584
Diffstat (limited to 'libstdc++-v3/docs')
-rw-r--r-- | libstdc++-v3/docs/configopts.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/docs/configopts.html b/libstdc++-v3/docs/configopts.html index 4acff06..d006802 100644 --- a/libstdc++-v3/docs/configopts.html +++ b/libstdc++-v3/docs/configopts.html @@ -9,7 +9,7 @@ <TITLE>libstdc++-v3 configure options</TITLE> <LINK REL="home" HREF="http://sources.redhat.com/libstdc++/"> <LINK REL=StyleSheet HREF="lib3styles.css"> -<!-- $Id: configopts.html,v 1.5 2000/07/07 21:13:27 pme Exp $ --> +<!-- $Id: configopts.html,v 1.6 2000/07/11 21:45:07 pme Exp $ --> </HEAD> <BODY> @@ -33,6 +33,11 @@ options</A></H1> all have opposite forms as well</A> (enable/disable and with/without). The defaults are for the latest snapshot, 2.90.8. +<P> + The canonical way to find out the configure options that are + available for a given set of libstdc++ sources is to go to the + source directory and then type: <TT> ./config --help </TT> + <DL> <DT><TT>--enable-multilib </TT>[default] <DD><P>This is part of the generic multilib support for building @@ -158,7 +163,7 @@ options</A></H1> <HR> <P CLASS="fineprint"><EM> -$Id: configopts.html,v 1.5 2000/07/07 21:13:27 pme Exp $ +$Id: configopts.html,v 1.6 2000/07/11 21:45:07 pme Exp $ </EM></P> |