From df2ecd5b41ca056cb127276825a86a7ad45ee238 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 7 Jun 2016 21:24:22 +0300 Subject: [PATCH] fixes for lldbmi2 debugger --- src/ddebug/gdb/gdbinterface.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddebug/gdb/gdbinterface.d b/src/ddebug/gdb/gdbinterface.d index 8fa213f..f767f14 100644 --- a/src/ddebug/gdb/gdbinterface.d +++ b/src/ddebug/gdb/gdbinterface.d @@ -780,7 +780,7 @@ class GDBInterface : ConsoleDebuggerInterface, TextCommandTarget { _threadId = threadId; _frameId = frameId; //command = "-stack-list-variables --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " --simple-values"; - command = "-stack-list-locals --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " 2"; + command = "-stack-list-locals --thread " ~ to!string(_threadId) ~ " --frame " ~ to!string(_frameId) ~ " 1"; } override void onResult() { DebugVariableList variables = parseVariableList(params);