[lldb-dev] Ubuntu nightly package for lldb 3.8 has no binary

2016-04-26 Thread Francis Ricci via lldb-dev
I'm trying to install lldb-3.8 on Ubuntu (trusty), but installing the lldb-3.8 packages doesn't appear to install a binary (only symlinks). According to dpkg -L, I have the following symlinks: /usr/bin/lldb-3.8 -> ../lib/llvm-3.8/bin/lldb /usr/lib/llvm-3.8/bin/lldb -> lldb-3.8.0 /usr/lib/llvm-3.8/

Re: [lldb-dev] Ubuntu nightly package for lldb 3.8 has no binary

2016-04-27 Thread Francis Ricci via lldb-dev
ould take a look and > make sure the prebuilt lldb packages work. I haven't seen any mention > of these scripts in this forum though, so you may need to ask on > llvm-dev instead... > > pl > > > On 27 April 2016 at 02:05, Francis Ricci via lldb-dev > wrote: > &

[lldb-dev] Bug fixes for release_38 branch

2016-04-28 Thread Francis Ricci via lldb-dev
Over the last month or two, I've been working to stabilize the release_38 branch of lldb, and there are commits which fix bugs on this branch that I'd like to cherry-pick down. They're listed at the bottom of this message. One thing to note - r251106 is a commit I'd like to revert, instead of a ch

Re: [lldb-dev] Bug fixes for release_38 branch

2016-04-29 Thread Francis Ricci via lldb-dev
a bit more tested and it is used by some users as well. > > On Thu, Apr 28, 2016 at 8:57 PM Francis Ricci via lldb-dev < > lldb-dev@lists.llvm.org> wrote: > >> Over the last month or two, I've been working to stabilize the release_38 >> branch of lldb, and there

Re: [lldb-dev] Ubuntu nightly package for lldb 3.8 has no binary

2016-05-03 Thread Francis Ricci via lldb-dev
take a look and >> make sure the prebuilt lldb packages work. I haven't seen any mention >> of these scripts in this forum though, so you may need to ask on >> llvm-dev instead... >> >> pl >> >> >> On 27 April 2016 at 02:05, Francis Ricci via lldb-dev

Re: [lldb-dev] Bug fixes for release_38 branch

2016-05-03 Thread Francis Ricci via lldb-dev
t > I think the idea of reverting that part is very reasonable as well. > > pl > > > On 29 April 2016 at 19:03, Francis Ricci via lldb-dev > wrote: > > I needed to have a (recent) branch of lldb which was stable for debugging > > across platforms (native darwin,

[lldb-dev] Release_38 cherry-picks

2016-06-06 Thread Francis Ricci via lldb-dev
Hi all, I'd like to merge a few more small bugfixes onto the 38 release branch. I'll plan to do it tomorrow (3/7) in the evening if I don't hear any objections. Thanks! r259433 - Fix getCompiler in unit testing framework on compiler symlinks r267459 - Add missing qRegisterInfo option to gdbremote

[lldb-dev] Returning multiple values in Python API function

2016-10-21 Thread Francis Ricci via lldb-dev
Hi all, I'm looking to add Platform::LaunchGDBServer() to the SBPlatform API, but it requires two return values - an lldb::pid_t and a string url. Internally, we just pass by reference, but we can't do that in the API. Any suggestions on how to do this, since we can't pass primitives by reference

Re: [lldb-dev] Returning multiple values in Python API function

2016-10-21 Thread Francis Ricci via lldb-dev
On Fri, Oct 21, 2016 at 3:30 PM, Greg Clayton wrote: > >> On Oct 21, 2016, at 1:03 PM, Francis Ricci via lldb-dev >> wrote: >> >> Hi all, >> >> I'm looking to add Platform::LaunchGDBServer() to the SBPlatform API, >> but it requires t