diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2002-07-02 06:17:36 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2002-07-02 06:17:36 +0000 |
commit | fc7f0a806cd0ade2c93bebca3f97ea5ee5eedcc2 (patch) | |
tree | 75df7cecca57c01063deb91e43b2243b4bb6f93b /libstdc++-v3/docs/html | |
parent | a3acdc0cc1e97311c411656903f7d4e196ed59d7 (diff) | |
download | gcc-fc7f0a806cd0ade2c93bebca3f97ea5ee5eedcc2.zip gcc-fc7f0a806cd0ade2c93bebca3f97ea5ee5eedcc2.tar.gz gcc-fc7f0a806cd0ade2c93bebca3f97ea5ee5eedcc2.tar.bz2 |
configopts.html, [...]: Tweaks.
2002-07-02 Phil Edwards <pme@gcc.gnu.org>
* docs/html/configopts.html, docs/html/install.html: Tweaks.
* include/ext/algorithm, include/ext/hash_map, include/ext/hash_set,
include/ext/iterator, include/ext/numeric, include/ext/rb_tree,
include/ext/slist, include/ext/stl_rope.h: Add doxygen hooks.
From-SVN: r55172
Diffstat (limited to 'libstdc++-v3/docs/html')
-rw-r--r-- | libstdc++-v3/docs/html/configopts.html | 11 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/install.html | 36 |
2 files changed, 23 insertions, 24 deletions
diff --git a/libstdc++-v3/docs/html/configopts.html b/libstdc++-v3/docs/html/configopts.html index 27f3c49..204aba5 100644 --- a/libstdc++-v3/docs/html/configopts.html +++ b/libstdc++-v3/docs/html/configopts.html @@ -26,7 +26,7 @@ options</a></h1> <p>Here are some of the non-obvious options to libstdc++'s configure. Keep in mind that <!-- This SECnn should be the "Choosing Package Options" section. --> - <a href="http://sources.redhat.com/autoconf/autoconf.html#SEC74">they + <a href="http://www.gnu.org/manual/autoconf/html_node/Package-Options.html#Package%20Options">they all have opposite forms as well</a> (enable/disable and with/without). The defaults are for current development sources. @@ -46,14 +46,13 @@ options</a></h1> <dt><code>--enable-debug </code> <dd><p>The configure script will automatically detect the highest - level of optimization that the compiler in use can use - (certain versions of g++ will ICE if given the <code>-O2</code> - option, but this is fixed in later versions of the compiler). + level of optimization that the compiler in use can use. This --enable flag will disable all optimizations and instruct the compiler to emit as much extra debugging information as it - can, for use inside GDB. Note this make command, executed in + can, for use inside GDB. Note this make command, executed in the build directory, will do much the same thing, without the - configuration difference:<code>make CXXFLAGS='-g -O0' all</code> + configuration difference: + <code>make CXXFLAGS='-g -O0' all</code> </p> <dt><code>--enable-cstdio </code> diff --git a/libstdc++-v3/docs/html/install.html b/libstdc++-v3/docs/html/install.html index ff35104..a76a932 100644 --- a/libstdc++-v3/docs/html/install.html +++ b/libstdc++-v3/docs/html/install.html @@ -73,7 +73,7 @@ with C++ exception handling related to this change in libstdc++-v3). The version of these tools should be <code>2.10.90</code>, or later, and you can get snapshots (as - well as releases) of binutils + well as releases) of binutils <a href="ftp://sources.redhat.com/pub/binutils">here</a>. The configure process will automatically detect and use these features if the underlying support is present. @@ -87,7 +87,7 @@ configure process will automatically detect and use these features if the underlying support is present. </p> - + <p>Finally, a few system-specific requirements: <dl> <dt> linux @@ -103,22 +103,22 @@ named locale tests. If this isn't an issue, don't worry about it. If named locales are needed, the underlying locale information must be installed. Note that rebuilding libstdc++ - after locales are installed is not necessary. - - <p> To install + after locales are installed is not necessary. + + <p> To install support for locales, do only one of the following: </p> <p> - <li> install all locales - <p> <code> export LC_ALL=C </code> </p> - <p> <code> rpm -e glibc-common --nodeps </code> </p> - <p> <code> rpm -i --define "_install_langs all" - glibc-common-2.2.5-34.i386.rpm </code> </p> - </li> - <li> install just the necessary locales - <p> <code> localedef -i de_DE -f ISO-8859-1 de_DE </code> </p> - </li> + <li> install all locales + <p> <code> export LC_ALL=C </code> </p> + <p> <code> rpm -e glibc-common --nodeps </code> </p> + <p> <code> rpm -i --define "_install_langs all" + glibc-common-2.2.5-34.i386.rpm </code> </p> + </li> + <li> install just the necessary locales + <p> <code> localedef -i de_DE -f ISO-8859-1 de_DE </code> </p> + </li> </p> - </dd> + </dd> </dt> </dl> </p> @@ -131,7 +131,7 @@ <ul> <li><em>gccsrcdir</em>: The directory holding the source of the compiler. It should have several subdirectories like - <em>gccsrcdir</em>/libio and <em>gccsrcdir</em>/gcc. + <em>gccsrcdir</em>/libiberty and <em>gccsrcdir</em>/gcc. <li><em>libsrcdir</em>: The directory holding the source of the C++ library. <li><em>gccbuilddir</em>: The build directory for the compiler @@ -216,7 +216,7 @@ <h3>[re]building only libstdc++</h3> <p>To rebuild just libstdc++, use: <pre> - make all-target-<em>libstdc++-v3</em></pre> + make all-target-libstdc++-v3</pre> This will configure and build the C++ library in the <em>gccbuilddir/cpu-vendor-os/</em>libstdc++ directory. </p> @@ -232,7 +232,7 @@ <p>You're done. Now install the rebuilt pieces with <pre> make install</pre> - or + or <pre> make install-gcc make install-target-libstdc++-v3</pre> |