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

Hemang Gadhavi via lldb-commits lldb-commits at lists.llvm.org
Sun Apr 5 23:31:46 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");
+}
+
----------------
HemangGadhavi wrote:

Yes, we’ll be implementing this in steps. 
I believe lldb-server does call this method, and the override was needed while incorporating the AIX changes."

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


More information about the lldb-commits mailing list