[electron] Added debugger to Electron build

This commit is contained in:
Christian Weichel
2019-11-19 19:20:40 +01:00
committed by Miro Spönemann
parent 76f126b913
commit 68ff6acb6a
3 changed files with 6 additions and 3 deletions

View File

@@ -272,9 +272,10 @@ export class BoardsServiceImpl implements BoardsService {
case "openocd":
loc.scripts = path.join(loc.main, "share", "openocd", "scripts");
loc.main = path.join(loc.main, "bin", "openocd");
break
break;
case "arm-none-eabi-gcc":
["gdb", "objdump"].forEach(s => loc[s] = path.join(loc.main, "bin", `arm-none-eabi-${s}`));
break;
}
return loc;