From baecf66716abee40735c0075f937d20d1e0ff1e1 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 25 Aug 2023 22:54:07 +0200 Subject: [PATCH] feat: Added .gdbinit script to aid with debugging --- .gdbinit | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gdbinit diff --git a/.gdbinit b/.gdbinit new file mode 100644 index 000000000..36214964d --- /dev/null +++ b/.gdbinit @@ -0,0 +1,9 @@ +# Skip all std:: and __gnu_debug:: symbols +skip -rfu ^std:: +skip -rfu ^__gnu_debug:: + +# Skip all ImGui:: symbols +skip -rfu ^ImGui:: + +# Trigger breakpoint when execution reaches triggerSafeShutdown() +break triggerSafeShutdown \ No newline at end of file