@@ -256,23 +256,23 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
256
256
raise FatalError ('ELF file not found. You need to build & flash the project before running debug targets' )
257
257
258
258
# Recreate empty 'gdbinit' directory
259
- gdbinit_dir = os . path . join (project_desc ['build_dir' ], 'gdbinit' )
259
+ gdbinit_dir = '/' . join ([ project_desc ['build_dir' ], 'gdbinit' ] )
260
260
if os .path .isfile (gdbinit_dir ):
261
261
os .remove (gdbinit_dir )
262
262
elif os .path .isdir (gdbinit_dir ):
263
263
shutil .rmtree (gdbinit_dir )
264
264
os .mkdir (gdbinit_dir )
265
265
266
266
# Prepare gdbinit for Python GDB extensions import
267
- py_extensions = os . path . join (gdbinit_dir , 'py_extensions' )
267
+ py_extensions = '/' . join ([ gdbinit_dir , 'py_extensions' ] )
268
268
with open (py_extensions , 'w' ) as f :
269
269
if is_gdb_with_python (gdb ):
270
270
f .write (GDBINIT_PYTHON_TEMPLATE .format (sys_path = sys .path ))
271
271
else :
272
272
f .write (GDBINIT_PYTHON_NOT_SUPPORTED )
273
273
274
274
# Prepare gdbinit for related ELFs symbols load
275
- symbols = os . path . join (gdbinit_dir , 'symbols' )
275
+ symbols = '/' . join ([ gdbinit_dir , 'symbols' ] )
276
276
with open (symbols , 'w' ) as f :
277
277
boot_elf = get_normalized_path (project_desc ['bootloader_elf' ]) if 'bootloader_elf' in project_desc else None
278
278
if boot_elf and os .path .exists (boot_elf ):
@@ -284,7 +284,7 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
284
284
285
285
# Generate the gdbinit for target connect if no custom gdbinit is present
286
286
if not gdbinit :
287
- gdbinit = os . path . join (gdbinit_dir , 'connect' )
287
+ gdbinit = '/' . join ([ gdbinit_dir , 'connect' ] )
288
288
with open (gdbinit , 'w' ) as f :
289
289
f .write (GDBINIT_CONNECT )
290
290
0 commit comments