mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +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;
|
package org.eclipse.cdt.debug.testplugin;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.File;
|
||||||
import org.eclipse.cdt.debug.core.cdi.*;
|
import org.eclipse.cdt.debug.core.cdi.*;
|
||||||
import org.eclipse.cdt.debug.mi.core.*;
|
import org.eclipse.cdt.debug.mi.core.*;
|
||||||
import org.eclipse.core.runtime.Path;
|
import org.eclipse.core.runtime.Path;
|
||||||
|
@ -39,7 +39,7 @@ public class CDebugHelper {
|
||||||
exename+="sol/" + exe;
|
exename+="sol/" + exe;
|
||||||
else
|
else
|
||||||
return(null);
|
return(null);
|
||||||
session=mi.createCSession(null, null, null, exename);
|
session=mi.createCSession(null, new File(exename), new File("."), null);
|
||||||
return(session);
|
return(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue