You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I use my hard-coded Windows source path (c:\\dev\\test\\) it works: I can set breakpoints, step through code, etc. C:\dev\test is the location of my project on my Windows PC.
But that's not very portable. If I use localRoot": "${workspaceFolder}", the pydev debugger outputs the following:
pydev debugger: unable to find translation for: "c:\dev\test\Test.py" in ["C:\dev\test/", "C:\dev\test"] (please revise your path mappings).
I'm not even sure WHAT is "looking" for the c:\dev\test\Test.py path (the first path in the pydev error). The problem is obviously that it doesn't like "c" vs "C". Is this a bug in the VSCode python-debugger plugin?
Versions:
VSCode: 1.96.2
Python Debugger: 2024-12-11
pydebug (on remote): 1.5.1
The text was updated successfully, but these errors were encountered:
I have a minimal Python example I'm running on a remote embedded Linux platform, in the /usr/bin/ directory:
Test.py:
I'd like to be able to attach from a Windows host machine (I'm unfortunately forced to use Windows). My launch.json looks like this:
If I use my hard-coded Windows source path (
c:\\dev\\test\\
) it works: I can set breakpoints, step through code, etc. C:\dev\test is the location of my project on my Windows PC.But that's not very portable. If I use
localRoot": "${workspaceFolder}"
, the pydev debugger outputs the following:pydev debugger: unable to find translation for: "c:\dev\test\Test.py" in ["C:\dev\test/", "C:\dev\test"] (please revise your path mappings).
I'm not even sure WHAT is "looking" for the
c:\dev\test\Test.py
path (the first path in the pydev error). The problem is obviously that it doesn't like "c" vs "C". Is this a bug in the VSCode python-debugger plugin?Versions:
VSCode: 1.96.2
Python Debugger: 2024-12-11
pydebug (on remote): 1.5.1
The text was updated successfully, but these errors were encountered: