[lldb-dev] [Bug 26139] New: CommandScriptImmediateOutputTestCase fails on Linux

2016-01-14 Thread via lldb-dev
https://llvm.org/bugs/show_bug.cgi?id=26139 Bug ID: 26139 Summary: CommandScriptImmediateOutputTestCase fails on Linux Product: lldb Version: unspecified Hardware: PC OS: Linux Status: NEW Severity: normal

Re: [lldb-dev] LLDB build at windows

2016-01-14 Thread Vadim Chugunov via lldb-dev
> > VS 2013 support is going to be deprecated soon. At that point it could break any time, because nobody is going to be making an effort to keep it > > working. > How is this going to play with Python scripting on Windows? Given that LLDB only supports Python 2.7 bindings, and that Python 2.7

Re: [lldb-dev] LLDB build at windows

2016-01-14 Thread Zachary Turner via lldb-dev
When we move to VS 2015 (which will be soon, btw) we will require Python 3.5+ on Windows. This already works for the most part, you can even try it out today. I've spent the better part of the past 6 months making LLDB's python bindings work with Python 3. The best part is that you don't need to

Re: [lldb-dev] Patch to fix REPL for ARMv7 & ARMv6 on linux

2016-01-14 Thread William Dillon via lldb-dev
Hi again, everyone I’d like to ping on this patch now that the 3.8 branch is fairly new, and merging it over is fairly straight-forward. Thanks in advance for your comments! - Will > There is a small change that enables correct calculation of arm sub > architectures while using the REPL on a

Re: [lldb-dev] lldb tests and tear down hooks

2016-01-14 Thread Zachary Turner via lldb-dev
So this is biting us again, for unrelated reasons. I thought of a potentially interesting solution. Right now each test class has a setUp and tearDown method. This method is called before and after EVERY test method in the class. So you can't put anything in these methods unless it's common to

[lldb-dev] Get source-map from python API?

2016-01-14 Thread Jeffrey Tan via lldb-dev
Hi, We are building an IDE debugger on top of lldb python API. In order to get the source remapping work(the source path embedded in the symbol may be different from the real source path), user needs to use "settings set target.source-map" command to remap the source. I would like users to do sim

Re: [lldb-dev] Get source-map from python API?

2016-01-14 Thread Jim Ingham via lldb-dev
There is currently no API to access the settings. You have to cons up commands and use SBCommandInterpreter::HandleCommand to execute them. This is one of the remaining holes in the SB API. Jim > On Jan 14, 2016, at 2:41 PM, Jeffrey Tan via lldb-dev > wrote: > > Hi, > > We are building an