mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
fixed small bug - forgot to use gdb string passed in
This commit is contained in:
parent
975236b144
commit
364318b050
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ public class MIPlugin extends Plugin {
|
|||
if (pty != null) {
|
||||
args = new String[] {gdb, "-q", "-nw", "-tty", pty.getSlaveName(), "-i", "mi1", program};
|
||||
} else {
|
||||
args = new String[] {"gdb", "-q", "-nw", "-i", "mi1", program};
|
||||
args = new String[] {gdb, "-q", "-nw", "-i", "mi1", program};
|
||||
}
|
||||
|
||||
Process pgdb = ProcessFactory.getFactory().exec(args);
|
||||
|
|
Loading…
Add table
Reference in a new issue