[lldb-dev] Failed to build lldb on linux: ‘m_actual_stop_info_sp’ was not declared

Thirumurthi, Ashok ashok.thirumurthi at intel.com
Thu May 9 07:16:26 PDT 2013


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: lldb-dev-bounces at cs.uiuc.edu [mailto:lldb-dev-bounces at cs.uiuc.edu] On Behalf Of Yao Qi
Sent: Thursday, May 09, 2013 6:54 AM
To: lldb-dev at cs.uiuc.edu
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
lldb-dev at cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev




More information about the lldb-dev mailing list