[Lldb-commits] [lldb] [lldb][Windows] Reuse preloaded exe module on launch (PR #210010)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 16 01:55:52 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Charles Zablit (charles-zablit)
<details>
<summary>Changes</summary>
Recreating the module everytime causes the path to be canonicalized. This does not work well with subst drives, because the newly created module will not have the correct drive path, causing breakpoints to be unresolved.
This patch fixes this by first attempting to reuse the existing module if it exists.
This is a problem in Swiftlang where we run our tests with a subst drive.
---
Full diff: https://github.com/llvm/llvm-project/pull/210010.diff
1 Files Affected:
- (modified) lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp (+14-15)
``````````diff
The server is unavailable at this time. Please wait a few minutes before you try again.
``````````
</details>
https://github.com/llvm/llvm-project/pull/210010
More information about the lldb-commits
mailing list