String pythonRuntime = goRootPath + "/src/pkg/runtime/runtime-gdb.py";
if (GoSdkUtil.checkFileExists(pythonRuntime)) {
gdbProcess.sendCommand("source " + pythonRuntime);
}
gdbProcess.sendCommand("file " + execName);
//If we got any script arguments, pass them into gdb
if(!configuration.scriptArguments.equals("")) {
gdbProcess.sendCommand("set args " + configuration.scriptArguments);
}