@@ -307,23 +307,23 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
307
307
raise FatalError ('ELF file not found. You need to build & flash the project before running debug targets' )
308
308
309
309
# Recreate empty 'gdbinit' directory
310
- gdbinit_dir = os . path . join (project_desc ['build_dir' ], 'gdbinit' )
310
+ gdbinit_dir = '/' . join ([ project_desc ['build_dir' ], 'gdbinit' ] )
311
311
if os .path .isfile (gdbinit_dir ):
312
312
os .remove (gdbinit_dir )
313
313
elif os .path .isdir (gdbinit_dir ):
314
314
shutil .rmtree (gdbinit_dir )
315
315
os .mkdir (gdbinit_dir )
316
316
317
317
# Prepare gdbinit for Python GDB extensions import
318
- py_extensions = os . path . join (gdbinit_dir , 'py_extensions' )
318
+ py_extensions = '/' . join ([ gdbinit_dir , 'py_extensions' ] )
319
319
with open (py_extensions , 'w' ) as f :
320
320
if is_gdb_with_python (gdb ):
321
321
f .write (GDBINIT_PYTHON_TEMPLATE .format (sys_path = sys .path ))
322
322
else :
323
323
f .write (GDBINIT_PYTHON_NOT_SUPPORTED )
324
324
325
325
# Prepare gdbinit for related ELFs symbols load
326
- symbols = os . path . join (gdbinit_dir , 'symbols' )
326
+ symbols = '/' . join ([ gdbinit_dir , 'symbols' ] )
327
327
with open (symbols , 'w' ) as f :
328
328
boot_elf = get_normalized_path (project_desc ['bootloader_elf' ]) if 'bootloader_elf' in project_desc else None
329
329
if boot_elf and os .path .exists (boot_elf ):
@@ -335,7 +335,7 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
335
335
336
336
# Generate the gdbinit for target connect if no custom gdbinit is present
337
337
if not gdbinit :
338
- gdbinit = os . path . join (gdbinit_dir , 'connect' )
338
+ gdbinit = '/' . join ([ gdbinit_dir , 'connect' ] )
339
339
with open (gdbinit , 'w' ) as f :
340
340
f .write (GDBINIT_CONNECT )
341
341
0 commit comments