summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/target-arch-from-module/TestTargetArchFromModule.py
AgeCommit message (Collapse)Author
2025-02-28[lldb] fix(lldb/**.py): fix invalid escape sequences (#94034)Eisuke Kawashima
Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
2023-08-11[lldb] SBTarget::AddModule do all searches by UUID, set Target archJason Molenda
Make SBTarget::AddModule possibly call out to an external program to find the binary by UUID if it can't be found more easily, the same way `target modules add -u ...` works from the commandline. If the Target does not have an architecture set yet, use the Module's Arch to initialize it. Allows an API writer to create a target with no arch, and inherit it from the first binary they load with AddModules. Differential Revision: https://reviews.llvm.org/D157659 rdar://113657555