We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5520fd + 1ccce5b commit 038c13bCopy full SHA for 038c13b
src/ro/redeul/google/go/runner/GoApplicationRunner.java
@@ -130,6 +130,11 @@ public void onGdbCommandCompleted(GdbEvent event) {
130
131
gdbProcess.sendCommand("file " + execName);
132
133
+ //If we got any script arguments, pass them into gdb
134
+ if(!configuration.scriptArguments.equals("")) {
135
+ gdbProcess.sendCommand("set args " + configuration.scriptArguments);
136
+ }
137
+
138
debugSession.initBreakpoints();
139
140
// Send startup commands
0 commit comments