Skip to content

Commit 7162825

Browse files
committed
Fixes to properly run idf.py gdb from windows
Signed-off-by: GuyBrush <[email protected]>
1 parent e088c37 commit 7162825

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tools/idf_py_actions/debug_ext.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def generate_gdbinit_rom_add_symbols(target: str) -> str:
270270
r.append('set confirm on')
271271
r.append('end')
272272
r.append('')
273-
return os.linesep.join(r)
273+
return '\n'.join(r)
274274
raise FatalError(f'{ESP_ROM_INFO_FILE} file not found. Please check IDF integrity.')
275275

276276
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[
279279
raise FatalError('ELF file not found. You need to build & flash the project before running debug targets')
280280

281281
# Recreate empty 'gdbinit' directory
282-
gdbinit_dir = os.path.join(project_desc['build_dir'], 'gdbinit')
282+
gdbinit_dir = '/'.join([project_desc['build_dir'], 'gdbinit'])
283283
if os.path.isfile(gdbinit_dir):
284284
os.remove(gdbinit_dir)
285285
elif os.path.isdir(gdbinit_dir):
286286
shutil.rmtree(gdbinit_dir)
287287
os.mkdir(gdbinit_dir)
288288

289289
# 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'])
291291
with open(py_extensions, 'w') as f:
292292
if is_gdb_with_python(gdb):
293293
f.write(GDBINIT_PYTHON_TEMPLATE.format(sys_path=sys.path))
294294
else:
295295
f.write(GDBINIT_PYTHON_NOT_SUPPORTED)
296296

297297
# Prepare gdbinit for related ELFs symbols load
298-
symbols = os.path.join(gdbinit_dir, 'symbols')
298+
symbols = '/'.join([gdbinit_dir, 'symbols'])
299299
with open(symbols, 'w') as f:
300300
boot_elf = get_normalized_path(project_desc['bootloader_elf']) if 'bootloader_elf' in project_desc else None
301301
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[
307307

308308
# Generate the gdbinit for target connect if no custom gdbinit is present
309309
if not gdbinit:
310-
gdbinit = os.path.join(gdbinit_dir, 'connect')
310+
gdbinit = '/'.join([gdbinit_dir, 'connect'])
311311
with open(gdbinit, 'w') as f:
312312
f.write(GDBINIT_CONNECT)
313313

0 commit comments

Comments
 (0)