Thanks Yao,

I verified and committed the build fix.  It seems that a regression was 
introduced on the Linux buildbot. I can't reproduce this locally, but I suspect 
that the failure is subtly related to r181501:

  File 
"/home/llvmbb/llvm-build-dir/lldb-x86_64-clang/llvm/tools/lldb/test/functionalities/inline-stepping/TestInlineStepping.py",
 line 77, in do_step
    self.fail ("Failed to stop due to step " + step_type + " operation stepping 
to: " + destination_description.GetData())

- Ashok

-----Original Message-----
From: [email protected] [mailto:[email protected]] On 
Behalf Of Yao Qi
Sent: Thursday, May 09, 2013 6:54 AM
To: [email protected]
Subject: Re: [lldb-dev] Failed to build lldb on linux: ‘m_actual_stop_info_sp’ 
was not declared

On 05/09/2013 04:17 PM, Yao Qi wrote:
> I grep'ed 'm_actual_stop_info_sp' and don't see it is used somewhere 
> else.  Looks like it may be related to this commit:
> 
>     r181501 - Changed the formerly pure virtual function:
>   
> http://lists.cs.uiuc.edu/pipermail/lldb-commits/Week-of-Mon-20130506/0
> 08386.html

I read this patch above a little, and probably we need a patch to do 
's/m_actual_stop_info_sp/m_stop_info_sp',

diff --git a/source/Plugins/Process/POSIX/POSIXThread.cpp 
b/source/Plugins/Process/POSIX/POSIXThread.cpp
index 45461c0..45762ec 100644
--- a/source/Plugins/Process/POSIX/POSIXThread.cpp
+++ b/source/Plugins/Process/POSIX/POSIXThread.cpp
@@ -141,7 +141,7 @@ 
POSIXThread::CreateRegisterContextForFrame(lldb_private::StackFrame *frame)  
bool
 POSIXThread::CalculateStopInfo()
 {
-    SetStopInfo (m_actual_stop_info_sp);
+    SetStopInfo (m_stop_info_sp);
     return true;
 }
 
_______________________________________________
lldb-dev mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev

_______________________________________________
lldb-dev mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev

Reply via email to