From a2f8d215e3faaa0f8935748eaf64f1bfa701a124 Mon Sep 17 00:00:00 2001 From: Chad Kennedy Date: Sat, 4 Apr 2020 19:26:00 -0500 Subject: [PATCH] Resolve mingw64 gdb not pretty printing STL Resolves issue #5765 as this still appears to be an issue. --- mingw-w64-gcc/gdbinit | 1 + 1 file changed, 1 insertion(+) diff --git a/mingw-w64-gcc/gdbinit b/mingw-w64-gcc/gdbinit index cf2f8b7847..5786c60370 100644 --- a/mingw-w64-gcc/gdbinit +++ b/mingw-w64-gcc/gdbinit @@ -2,4 +2,5 @@ python import sys sys.path.insert(0, sys.path[0] + '/../../%GCC_NAME%/python') from libstdcxx.v6.printers import register_libstdcxx_printers +register_libstdcxx_printers (None) end