diff options
| author | Phil Edwards <pme@gcc.gnu.org> | 2002-04-01 21:56:42 +0000 |
|---|---|---|
| committer | Phil Edwards <pme@gcc.gnu.org> | 2002-04-01 21:56:42 +0000 |
| commit | 76f6aa8b6c999bf5f83ae23403c261f04e58841e (patch) | |
| tree | f085c59e0aeb3f090619e56d9f5c650f7e998c9c /libstdc++-v3/src | |
| parent | bd7e6f2d207b371f0699d092f0e5a3efd31eb5e0 (diff) | |
| download | gcc-76f6aa8b6c999bf5f83ae23403c261f04e58841e.tar.gz gcc-76f6aa8b6c999bf5f83ae23403c261f04e58841e.tar.bz2 gcc-76f6aa8b6c999bf5f83ae23403c261f04e58841e.zip | |
linker-map.gnu: Export __verbose_terminate_handler.
2002-04-01 Phil Edwards <pme@gcc.gnu.org>
* config/linker-map.gnu: Export __verbose_terminate_handler.
* libsupc++/Makefile.am (sources): Add cxa_demangle.c, dyn-string.c.
Make new LTCOMPILE variable, use it in new special build rules.
* libsupc++/Makefile.in: Rebuild.
* src/vterminate.cc (__verbose_terminate_handler): Enable use of
runtime __cxa_demangle.
* docs/html/install.html: Update prereqs and instructions.
* docs/html/19_diagnostics/howto.html: Bring naming for
verbose_terminate_handler into line with reality.
From-SVN: r51709
Diffstat (limited to 'libstdc++-v3/src')
| -rw-r--r-- | libstdc++-v3/src/vterminate.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libstdc++-v3/src/vterminate.cc b/libstdc++-v3/src/vterminate.cc index 9475d1ad6fd..a3543c903c6 100644 --- a/libstdc++-v3/src/vterminate.cc +++ b/libstdc++-v3/src/vterminate.cc @@ -56,10 +56,8 @@ namespace __gnu_cxx int status = -1; char *dem = 0; -#if 0 // Disabled until __cxa_demangle gets the runtime GPL exception. dem = __cxa_demangle(name, 0, 0, &status); -#endif printf("terminate called after throwing a `%s'\n", status == 0 ? dem : name); |
