@@ -270,7 +270,7 @@ def generate_gdbinit_rom_add_symbols(target: str) -> str:
270
270
r .append ('set confirm on' )
271
271
r .append ('end' )
272
272
r .append ('' )
273
- return os . linesep .join (r )
273
+ return ' \n ' .join (r )
274
274
raise FatalError (f'{ ESP_ROM_INFO_FILE } file not found. Please check IDF integrity.' )
275
275
276
276
def generate_gdbinit_files (gdb : str , gdbinit : Optional [str ], project_desc : Dict [str , Any ]) -> None :
@@ -279,23 +279,23 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
279
279
raise FatalError ('ELF file not found. You need to build & flash the project before running debug targets' )
280
280
281
281
# Recreate empty 'gdbinit' directory
282
- gdbinit_dir = os . path . join (project_desc ['build_dir' ], 'gdbinit' )
282
+ gdbinit_dir = '/' . join ([ project_desc ['build_dir' ], 'gdbinit' ] )
283
283
if os .path .isfile (gdbinit_dir ):
284
284
os .remove (gdbinit_dir )
285
285
elif os .path .isdir (gdbinit_dir ):
286
286
shutil .rmtree (gdbinit_dir )
287
287
os .mkdir (gdbinit_dir )
288
288
289
289
# Prepare gdbinit for Python GDB extensions import
290
- py_extensions = os . path . join (gdbinit_dir , 'py_extensions' )
290
+ py_extensions = '/' . join ([ gdbinit_dir , 'py_extensions' ] )
291
291
with open (py_extensions , 'w' ) as f :
292
292
if is_gdb_with_python (gdb ):
293
293
f .write (GDBINIT_PYTHON_TEMPLATE .format (sys_path = sys .path ))
294
294
else :
295
295
f .write (GDBINIT_PYTHON_NOT_SUPPORTED )
296
296
297
297
# Prepare gdbinit for related ELFs symbols load
298
- symbols = os . path . join (gdbinit_dir , 'symbols' )
298
+ symbols = '/' . join ([ gdbinit_dir , 'symbols' ] )
299
299
with open (symbols , 'w' ) as f :
300
300
boot_elf = get_normalized_path (project_desc ['bootloader_elf' ]) if 'bootloader_elf' in project_desc else None
301
301
if boot_elf and os .path .exists (boot_elf ):
@@ -307,7 +307,7 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
307
307
308
308
# Generate the gdbinit for target connect if no custom gdbinit is present
309
309
if not gdbinit :
310
- gdbinit = os . path . join (gdbinit_dir , 'connect' )
310
+ gdbinit = '/' . join ([ gdbinit_dir , 'connect' ] )
311
311
with open (gdbinit , 'w' ) as f :
312
312
f .write (GDBINIT_CONNECT )
313
313
0 commit comments