Replies: 1 comment 8 replies
-
Um, it would be helpful to qualify "has been unsuccessful". What actually happens? Do you see any errors? If I had to guess looking at your setup, the debug session never starts because VSCode is waiting for preLaunchTask to complete (it's meant to be used for building). This can be worked around by using a background task, but it's tricky to do robustly, because you'd want to wait until |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am stuck getting codeLLDB to connect to a
rr replay
session.Currently I have this launch.json:
With the following tasks.json:
I record the traces using
cargo rr
and I would like to have a debug configuration for debugging the latest trace.I took the reverse debugging example and tried to make it work, but so far it has been unsuccessful.
I removed the
targetCreateCommands": ["target create ${workspaceFolder}/build/debuggee"],
section, since I thoughtrr replay
has all the necessary info and does not need to create a target.Any Ideas?
Beta Was this translation helpful? Give feedback.
All reactions