diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2006-01-25 18:22:34 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2006-01-25 18:22:34 +0000 |
commit | a1c88e064faaf236d8416b6596d7e586528e8371 (patch) | |
tree | 0365fa20371178b37a45a98bea6279df67935ba2 /libstdc++-v3 | |
parent | a68e7e6c6648e57706db51b202f3e72406517b9f (diff) | |
download | gcc-a1c88e064faaf236d8416b6596d7e586528e8371.zip gcc-a1c88e064faaf236d8416b6596d7e586528e8371.tar.gz gcc-a1c88e064faaf236d8416b6596d7e586528e8371.tar.bz2 |
configopts.html: Tweak docs.
2006-01-25 Benjamin Kosnik <bkoz@redhat.com>
* docs/html/configopts.html: Tweak docs.
* libsupc++/eh_personality.cc: Fix typos.
From-SVN: r110218
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/docs/html/configopts.html | 6 | ||||
-rw-r--r-- | libstdc++-v3/libsupc++/eh_personality.cc | 8 |
3 files changed, 14 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b9c2cdb..271a393 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2006-01-25 Benjamin Kosnik <bkoz@redhat.com> + + * docs/html/configopts.html: Tweak docs. + + * libsupc++/eh_personality.cc: Fix typos. + 2006-01-24 Paolo Carlini <pcarlini@suse.de> PR libstdc++/25649 diff --git a/libstdc++-v3/docs/html/configopts.html b/libstdc++-v3/docs/html/configopts.html index a027c65..f7e1d79 100644 --- a/libstdc++-v3/docs/html/configopts.html +++ b/libstdc++-v3/docs/html/configopts.html @@ -285,8 +285,10 @@ options</a></h1> 'darwin-export'. Both gnu- options require that a recent version of the GNU linker be in use. Both darwin options are equivalent. With no style given, the configure script will try - to guess if the 'gnu' style can be used, and if so, will turn - it on. + to guess correct defaults for the host system, probe to see if + additional requirements are necessary and present for + activation, and if so, will turn symbol versioning on. This + option can change the library ABI. </p> </dd> diff --git a/libstdc++-v3/libsupc++/eh_personality.cc b/libstdc++-v3/libsupc++/eh_personality.cc index 99efe27..5a03495 100644 --- a/libstdc++-v3/libsupc++/eh_personality.cc +++ b/libstdc++-v3/libsupc++/eh_personality.cc @@ -679,10 +679,10 @@ PERSONALITY_FUNCTION (int version, return _URC_INSTALL_CONTEXT; } -/* The ARM EABI implementation of __cxa_call_unexpected is in a different - file so that the personality routine san be used standalone. The generic - routine sahred datastructures with the PR so it is most convenient to - implement it here. */ +/* The ARM EABI implementation of __cxa_call_unexpected is in a + different file so that the personality routine (PR) can be used + standalone. The generic routine shared datastructures with the PR + so it is most convenient to implement it here. */ #ifndef __ARM_EABI_UNWINDER__ extern "C" void __cxa_call_unexpected (void *exc_obj_in) |