diff options
author | Tom Tromey <tromey@adacore.com> | 2019-11-26 15:14:57 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-11-26 15:14:57 -0700 |
commit | 57357d9df842f7eff4f9a4e6034396846379aa7e (patch) | |
tree | 1eec4530441dc70b385bfedb70d2b42c4eeadd3d /gdb/cp-support.c | |
parent | 3ea16160a66e0e3bc59842e27e41890411729a86 (diff) | |
download | fsf-binutils-gdb-57357d9df842f7eff4f9a4e6034396846379aa7e.zip fsf-binutils-gdb-57357d9df842f7eff4f9a4e6034396846379aa7e.tar.gz fsf-binutils-gdb-57357d9df842f7eff4f9a4e6034396846379aa7e.tar.bz2 |
Fix mingw build of gdb
Christian pointed out on irc that the threading series broke the build
on mingw. This patch fixes the problem, by moving the initialization
of gdb_demangle_attempt_core_dump into the appropriate #if.
gdb/ChangeLog
2019-11-26 Tom Tromey <tromey@adacore.com>
* cp-support.c (_initialize_cp_support): Conditionally initialize
gdb_demangle_attempt_core_dump.
Change-Id: I9ace0bea75a51f317ea933b607f6b5a94d651eea
Diffstat (limited to 'gdb/cp-support.c')
-rw-r--r-- | gdb/cp-support.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cp-support.c b/gdb/cp-support.c index 4de2a98..bec8dc8 100644 --- a/gdb/cp-support.c +++ b/gdb/cp-support.c @@ -2199,6 +2199,8 @@ display the offending symbol."), NULL, &maintenance_set_cmdlist, &maintenance_show_cmdlist); + + gdb_demangle_attempt_core_dump = can_dump_core (LIMIT_CUR); #endif #if GDB_SELF_TEST @@ -2207,6 +2209,4 @@ display the offending symbol."), selftests::register_test ("cp_remove_params", selftests::test_cp_remove_params); #endif - - gdb_demangle_attempt_core_dump = can_dump_core (LIMIT_CUR); } |