Skip to content

Commit 8b68b39

Browse files
MiguelBarroespressif-bot
authored andcommitted
fix(tools): fix path delimiter in gdbinit for Windows
Merges #12683 Signed-off-by: Alexey Lapshin <[email protected]>
1 parent 41ca909 commit 8b68b39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/idf_py_actions/debug_ext.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -307,23 +307,23 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
307307
raise FatalError('ELF file not found. You need to build & flash the project before running debug targets')
308308

309309
# Recreate empty 'gdbinit' directory
310-
gdbinit_dir = os.path.join(project_desc['build_dir'], 'gdbinit')
310+
gdbinit_dir = '/'.join([project_desc['build_dir'], 'gdbinit'])
311311
if os.path.isfile(gdbinit_dir):
312312
os.remove(gdbinit_dir)
313313
elif os.path.isdir(gdbinit_dir):
314314
shutil.rmtree(gdbinit_dir)
315315
os.mkdir(gdbinit_dir)
316316

317317
# 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'])
319319
with open(py_extensions, 'w') as f:
320320
if is_gdb_with_python(gdb):
321321
f.write(GDBINIT_PYTHON_TEMPLATE.format(sys_path=sys.path))
322322
else:
323323
f.write(GDBINIT_PYTHON_NOT_SUPPORTED)
324324

325325
# Prepare gdbinit for related ELFs symbols load
326-
symbols = os.path.join(gdbinit_dir, 'symbols')
326+
symbols = '/'.join([gdbinit_dir, 'symbols'])
327327
with open(symbols, 'w') as f:
328328
boot_elf = get_normalized_path(project_desc['bootloader_elf']) if 'bootloader_elf' in project_desc else None
329329
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[
335335

336336
# Generate the gdbinit for target connect if no custom gdbinit is present
337337
if not gdbinit:
338-
gdbinit = os.path.join(gdbinit_dir, 'connect')
338+
gdbinit = '/'.join([gdbinit_dir, 'connect'])
339339
with open(gdbinit, 'w') as f:
340340
f.write(GDBINIT_CONNECT)
341341

0 commit comments

Comments
 (0)