summaryrefslogtreecommitdiff
path: root/libstdc++-v3/src
diff options
context:
space:
mode:
authorpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-01 21:56:42 +0000
committerpme <pme@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-01 21:56:42 +0000
commitd21e8876c661060ad1034ed756a5ad66ee8bc470 (patch)
treef085c59e0aeb3f090619e56d9f5c650f7e998c9c /libstdc++-v3/src
parent5acfe29d59af89dbc9d777b850ef68552a8610d1 (diff)
downloadgcc-d21e8876c661060ad1034ed756a5ad66ee8bc470.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51709 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/src')
-rw-r--r--libstdc++-v3/src/vterminate.cc2
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);