[Lldb-commits] [lldb] r240166 - Add comment for workarond in DYLDRendezvous with android version
Tamas Berghammer
tberghammer at google.com
Fri Jun 19 12:42:43 PDT 2015
Author: tberghammer
Date: Fri Jun 19 14:42:43 2015
New Revision: 240166
URL: http://llvm.org/viewvc/llvm-project?rev=240166&view=rev
Log:
Add comment for workarond in DYLDRendezvous with android version
Modified:
lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
Modified: lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp?rev=240166&r1=240165&r2=240166&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp (original)
+++ lldb/trunk/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp Fri Jun 19 14:42:43 2015
@@ -414,6 +414,7 @@ DYLDRendezvous::ReadSOEntryFromMemory(ll
// The base_addr is not filled in for some case.
// Try to figure it out based on the load address of the object file.
+ // The issue observed for '/system/bin/linker' on Android L (5.0, 5.1)
if (entry.base_addr == 0)
{
lldb::addr_t load_addr = LLDB_INVALID_ADDRESS;
More information about the lldb-commits
mailing list