Skip to content

Commit 293bd9a

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 6dc9cc8 commit 293bd9a

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
@@ -256,23 +256,23 @@ def generate_gdbinit_files(gdb: str, gdbinit: Optional[str], project_desc: Dict[
256256
raise FatalError('ELF file not found. You need to build & flash the project before running debug targets')
257257

258258
# Recreate empty 'gdbinit' directory
259-
gdbinit_dir = os.path.join(project_desc['build_dir'], 'gdbinit')
259+
gdbinit_dir = '/'.join([project_desc['build_dir'], 'gdbinit'])
260260
if os.path.isfile(gdbinit_dir):
261261
os.remove(gdbinit_dir)
262262
elif os.path.isdir(gdbinit_dir):
263263
shutil.rmtree(gdbinit_dir)
264264
os.mkdir(gdbinit_dir)
265265

266266
# 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'])
268268
with open(py_extensions, 'w') as f:
269269
if is_gdb_with_python(gdb):
270270
f.write(GDBINIT_PYTHON_TEMPLATE.format(sys_path=sys.path))
271271
else:
272272
f.write(GDBINIT_PYTHON_NOT_SUPPORTED)
273273

274274
# Prepare gdbinit for related ELFs symbols load
275-
symbols = os.path.join(gdbinit_dir, 'symbols')
275+
symbols = '/'.join([gdbinit_dir, 'symbols'])
276276
with open(symbols, 'w') as f:
277277
boot_elf = get_normalized_path(project_desc['bootloader_elf']) if 'bootloader_elf' in project_desc else None
278278
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[
284284

285285
# Generate the gdbinit for target connect if no custom gdbinit is present
286286
if not gdbinit:
287-
gdbinit = os.path.join(gdbinit_dir, 'connect')
287+
gdbinit = '/'.join([gdbinit_dir, 'connect'])
288288
with open(gdbinit, 'w') as f:
289289
f.write(GDBINIT_CONNECT)
290290

0 commit comments

Comments
 (0)