mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 21:45:22 +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();
|
MISession mi = session.getMISession();
|
||||||
CommandFactory factory = mi.getCommandFactory();
|
CommandFactory factory = mi.getCommandFactory();
|
||||||
MIExecArguments arguments = factory.createMIExecArguments(args);
|
MIExecArguments arguments = factory.createMIExecArguments(new String[]{args});
|
||||||
try {
|
try {
|
||||||
mi.postCommand(arguments);
|
mi.postCommand(arguments);
|
||||||
MIInfo info = arguments.getMIInfo();
|
MIInfo info = arguments.getMIInfo();
|
||||||
|
|
Loading…
Add table
Reference in a new issue