Debugging LLVM target

0
Can I debug LLVM target the same way as a unit test? The application is generated under bin/llvm after building, but I'm having trouble setting up the debugging configuration. I've tried adding a new configuration to launch.json with "target": llvm but it's not working for this setup. Could you please provide the correct process or configuration for debugging LLVM targets?
asked
1 answers
0

Hello Decebal Epuran,

what is the workflow you want to achieve? 

LLVM target is normally only there for unit testing and therefore you normally execute a unit test and set a breakpoint in case you want to debug. Then you can use single stepping and see all variables in the variables window.

Do you need more?

Regards Markus

answered