Skip to content

Commit

Permalink
pyocd: Setting project directory to Eclipse project location.
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Reed <flit@me.com>
  • Loading branch information
flit committed Jan 5, 2021
1 parent 39cc38f commit e5beb4b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ public static String[] getGdbServerCommandLineArray(ILaunchConfiguration configu
// disable waiting for a board to be connected
lst.add("--no-wait");

lst.add("-j");
lst.add(DebugUtils.getProjectOsPath(configuration).toOSString());

// GDB port
lst.add("--port");
lst.add(Integer.toString(configuration.getAttribute(ConfigurationAttributes.GDB_SERVER_GDB_PORT_NUMBER,
Expand Down

0 comments on commit e5beb4b

Please sign in to comment.