mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Simple fix.
This commit is contained in:
parent
d3bbe3ace6
commit
fbbb8e82c0
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
package org.eclipse.cdt.debug.testplugin;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import java.io.File;
|
||||
import org.eclipse.cdt.debug.core.cdi.*;
|
||||
import org.eclipse.cdt.debug.mi.core.*;
|
||||
import org.eclipse.core.runtime.Path;
|
||||
|
@ -39,7 +39,7 @@ public class CDebugHelper {
|
|||
exename+="sol/" + exe;
|
||||
else
|
||||
return(null);
|
||||
session=mi.createCSession(null, null, null, exename);
|
||||
session=mi.createCSession(null, new File(exename), new File("."), null);
|
||||
return(session);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue