mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 05:25:21 +02:00
Pass an array of String.
This commit is contained in:
parent
335886f307
commit
f309922d7c
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public class RuntimeOptions implements ICDIRuntimeOptions {
|
|||
}
|
||||
MISession mi = session.getMISession();
|
||||
CommandFactory factory = mi.getCommandFactory();
|
||||
MIExecArguments arguments = factory.createMIExecArguments(args);
|
||||
MIExecArguments arguments = factory.createMIExecArguments(new String[]{args});
|
||||
try {
|
||||
mi.postCommand(arguments);
|
||||
MIInfo info = arguments.getMIInfo();
|
||||
|
|
Loading…
Add table
Reference in a new issue