<div dir="ltr">> <span style="font-family:arial,sans-serif;font-size:12.727272033691406px">Does Mac OSX use the cmake build?</span><div><span style="font-family:arial,sans-serif;font-size:12.727272033691406px"><br></span></div>
<div><span style="font-family:arial,sans-serif;font-size:12.727272033691406px">Not really.  The Xcode lldb-tool build is the canonical MacOSX build.  It builds with cmake but IIRC many (most?) of the tests fail with that build.</span></div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 27, 2014 at 2:59 PM, Zachary Turner <span dir="ltr"><<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">On Tue, May 27, 2014 at 2:56 PM,  <<a href="mailto:jingham@apple.com">jingham@apple.com</a>> wrote:<br>

><br>
>> On May 27, 2014, at 2:49 PM, Zachary Turner <<a href="mailto:zturner@google.com">zturner@google.com</a>> wrote:<br>
</div><div class="">>> What I meant is that you change this (for example):<br>
>><br>
>> std::shared_ptr<ValueImpl> m_opaque_sp;<br>
>><br>
>> to this:<br>
>><br>
>> std::shared_ptr<ValueImpl>* m_opaque_sp;<br>
>><br>
>> And allocate in the constructor / copy constructor, delete in the<br>
>> destructor.  Then you change every occurrence of m_opaque_sp-> to<br>
>> (*m_opaque_sp)-><br>
>><br>
><br>
> No, I don't think we should do that either.  It just adds ugly boiler plate and the chance for error, and doesn't solve any actual problems.<br>
<br>
</div>Greg's suggestion will still generate the warnings (at least in MSVC),<br>
for the simple fact that the shared_ptr<> etc is declared as a<br>
stack-based class member.  But if it's guaranteed that these methods<br>
aren't publicly accessible, then suppressing the warning is probably<br>
fine.<br>
<br>
I'm a Windows person, so I don't have the means to easily test this<br>
kind of change on Mac OSX.  Does Mac OSX use the cmake build?  If so,<br>
does this mean I only need to define LLDB_PRIVATE in the cmake file<br>
and can assume it will work on the Mac build?  Or is there more<br>
involved?<br>
<div class="HOEnZb"><div class="h5">_______________________________________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><table cellspacing="0" cellpadding="0" style="color:rgb(136,136,136);font-family:'Times New Roman'"><tbody><tr style="color:rgb(85,85,85);font-family:sans-serif;font-size:small">
<td nowrap style="border-top-style:solid;border-top-color:rgb(213,15,37);border-top-width:2px">Todd Fiala |</td><td nowrap style="border-top-style:solid;border-top-color:rgb(51,105,232);border-top-width:2px"> Software Engineer |</td>
<td nowrap style="border-top-style:solid;border-top-color:rgb(0,153,57);border-top-width:2px"> <a href="mailto:tfiala@google.com" style="color:rgb(17,85,204)" target="_blank"><span style="background-color:rgb(255,255,204);color:rgb(34,34,34);background-repeat:initial initial">tfiala@google.com</span></a> |</td>
<td nowrap style="border-top-style:solid;border-top-color:rgb(238,178,17);border-top-width:2px"><font color="#1155cc"> <a>650-943-3180</a></font></td></tr></tbody></table><br></div>
</div>