[Lldb-commits] [lldb] [lldb] Fix Intel PT plugin compile errors (PR #77252)
Walter Erquinigo via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 8 13:47:07 PST 2024
walter-erquinigo wrote:
> because the prior call to `CreateProcess` on line 107 returned null.
If that call returned null, that means that CreateProcess wasn't able to find the "trace" process plugin. Another thing to add, which should definitely work, is to invoke
```
ProcessTrace::Initialize();
```
right before `CreateProcess`. That should definitely work
https://github.com/llvm/llvm-project/pull/77252
More information about the lldb-commits
mailing list