[Lldb-commits] How to build lldb-mi

2017-05-29 Thread Laghzaoui Mohammed via lldb-commits
Hello i need your help for building lldb-mi like static library on Mac OS. Many thanks ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [lldb] r303907 - Fix bug #28898

2017-05-29 Thread Ulrich Weigand via lldb-commits
Kamil Rytarowski wrote on 29.05.2017 18:10:36: > Do you offer shell account? I don't have Linux and/or s390x to debug it. Sorry, this is on an internal IBM machine ... I don't have a publically accessible machine to reproduce this on at the moment. I managed to debug a bit myself, and I think t

Re: [Lldb-commits] [PATCH] D32585: Implementation of remote packets for Trace data.

2017-05-29 Thread Zachary Turner via lldb-commits
I see. In that case, at least store it in a std::unique_ptr. On Mon, May 29, 2017 at 12:22 AM Ravitheja Addepally via Phabricator < revi...@reviews.llvm.org> wrote: > ravitheja added a comment. > > Hello, the reason I switched to allocating with new (std::nothrow) > uint8_t[byte_count]; was beca

Re: [Lldb-commits] [lldb] r303907 - Fix bug #28898

2017-05-29 Thread Kamil Rytarowski via lldb-commits
Do you offer shell account? I don't have Linux and/or s390x to debug it. On 29.05.2017 17:17, Ulrich Weigand via lldb-commits wrote: > Hello, > > It appears this commit broke the > EditlineTestFixture.EditlineReceivesSingleLineText > unit test on s390x-linux. The test now simply hangs (hanging t

Re: [Lldb-commits] [lldb] r303907 - Fix bug #28898

2017-05-29 Thread Ulrich Weigand via lldb-commits
Hello, It appears this commit broke the EditlineTestFixture.EditlineReceivesSingleLineText unit test on s390x-linux. The test now simply hangs (hanging the whole test suite execution) ... Mit freundlichen Gruessen / Best Regards Ulrich Weigand -- Dr. Ulrich Weigand | Phone: +49-7031/16-372

[Lldb-commits] [lldb] r304158 - Replace forward decl with include to unbreak the build.

2017-05-29 Thread Benjamin Kramer via lldb-commits
Author: d0k Date: Mon May 29 09:40:07 2017 New Revision: 304158 URL: http://llvm.org/viewvc/llvm-project?rev=304158&view=rev Log: Replace forward decl with include to unbreak the build. Modified: lldb/trunk/include/lldb/Utility/Log.h Modified: lldb/trunk/include/lldb/Utility/Log.h URL: http

[Lldb-commits] [PATCH] D33035: Tool for using Intel(R) Processor Trace hardware feature

2017-05-29 Thread Abhishek via Phabricator via lldb-commits
abhishek.aggarwal added a comment. In https://reviews.llvm.org/D33035#754640, @labath wrote: > I don't really like that we are adding a public shared library for every tiny > intel feature. Could we at least merge this "plugin" with the existing > "intel-mpx plugin" to create one "intel support

[Lldb-commits] [lldb] r304147 - Replaced StructuredData::Type with eStructuredDataType

2017-05-29 Thread Abhishek Aggarwal via lldb-commits
Author: abhishek Date: Mon May 29 06:13:30 2017 New Revision: 304147 URL: http://llvm.org/viewvc/llvm-project?rev=304147&view=rev Log: Replaced StructuredData::Type with eStructuredDataType ...missing from r304138 "Added new API to SBStructuredData class" Modified: lldb/trunk/unittests/Pro

[Lldb-commits] [lldb] r304142 - More StructuredData::Type::eTypeDictionary -> lldb::eStructuredDataTypeDictionary

2017-05-29 Thread Stephan Bergmann via lldb-commits
Author: sberg Date: Mon May 29 03:51:58 2017 New Revision: 304142 URL: http://llvm.org/viewvc/llvm-project?rev=304142&view=rev Log: More StructuredData::Type::eTypeDictionary -> lldb::eStructuredDataTypeDictionary ...missing from previous r304138 "Added new API to SBStructuredData class" Modifi

[Lldb-commits] [lldb] r304138 - Added new API to SBStructuredData class

2017-05-29 Thread Abhishek Aggarwal via lldb-commits
Author: abhishek Date: Mon May 29 03:25:46 2017 New Revision: 304138 URL: http://llvm.org/viewvc/llvm-project?rev=304138&view=rev Log: Added new API to SBStructuredData class Summary: - Added API to access data types -- integer, double, array, string, boolean and dictionary data types --

[Lldb-commits] [PATCH] D32585: Implementation of remote packets for Trace data.

2017-05-29 Thread Ravitheja Addepally via Phabricator via lldb-commits
ravitheja added a comment. Hello, the reason I switched to allocating with new (std::nothrow) uint8_t[byte_count]; was because the byte_count is actually user defined and I do want to catch cases where lldb is not able to allocate the requested buffer size. https://reviews.llvm.org/D32585