[Lldb-commits] [lldb] [lldb][AIX] Enable NativeProcessAIX Manager for lldb-server (PR #190173)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 2 09:36:33 PDT 2026


================
@@ -242,6 +252,11 @@ size_t NativeProcessAIX::UpdateThreads() {
   return m_threads.size();
 }
 
+Status NativeProcessAIX::GetFileLoadAddress(const llvm::StringRef &file_name,
+                                            lldb::addr_t &load_addr) {
+  return Status("unsupported");
+}
+
----------------
DavidSpickett wrote:

Surprising that this was already in the header, I guess no one tried to call this method until now.

Not sure what the consequences of it failing are, but I'm ok with this for now as I now you're doing this in steps.

https://github.com/llvm/llvm-project/pull/190173


More information about the lldb-commits mailing list