[lldb-dev] Android Studio 3.0 missing lldb support for native debugging?

2017-10-25 Thread Greg Clayton via lldb-dev
I updated Android Studio to 3.0 and got a dialog saying the "lldb;3.0" package wasn't available for download. Anyone seen this and worked around it somehow? Greg ___ lldb-dev mailing list lldb-dev@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/lis

Re: [lldb-dev] What's the best way to use "--all-files" option from python?

2017-10-25 Thread Jim Ingham via lldb-dev
> On Oct 25, 2017, at 9:41 AM, Greg Clayton via lldb-dev > wrote: > > Are glob characters legal file characters on any systems? If so we can't do > the auto detect where we override the meaning of -f. If not, then we can. We > could add a --glob option that goes along with the -f option if g

Re: [lldb-dev] What's the best way to use "--all-files" option from python?

2017-10-25 Thread Jim Ingham via lldb-dev
> On Oct 25, 2017, at 10:44 AM, Jim Ingham via lldb-dev > wrote: > > I have only one reservation to this plan, which is that at present I only > have one breakpoint command that shares a common set of command options. So > if we start overloading the meaning of -f, meaning a file in the cas

Re: [lldb-dev] What's the best way to use "--all-files" option from python?

2017-10-25 Thread Jim Ingham via lldb-dev
I have only one reservation to this plan, which is that at present I only have one breakpoint command that shares a common set of command options. So if we start overloading the meaning of -f, meaning a file in the case of file & line breakpoints and a restriction glob pattern for source regex

Re: [lldb-dev] What's the best way to use "--all-files" option from python?

2017-10-25 Thread Zachary Turner via lldb-dev
Right, but you can still escape it no? You face the same issue with `find . -name "*"`. That's going to find everything. This is just optimizing usability for the common case. Because it's pretty rare case to want to search for literal *, extremely common to want to search for wildcard stars, a

Re: [lldb-dev] What's the best way to use "--all-files" option from python?

2017-10-25 Thread Pavel Labath via lldb-dev
On 25 October 2017 at 09:41, Greg Clayton via lldb-dev wrote: > Are glob characters legal file characters on any systems? All unix systems accept '*' as file names. In fact, the only system I know of, where that is not a legal filename is windows. ___

Re: [lldb-dev] What's the best way to use "--all-files" option from python?

2017-10-25 Thread Greg Clayton via lldb-dev
Are glob characters legal file characters on any systems? If so we can't do the auto detect where we override the meaning of -f. If not, then we can. We could add a --glob option that goes along with the -f option if glob characters are valid file system characters. There are a few breakpoint o

Re: [lldb-dev] What's the best way to use "--all-files" option from python?

2017-10-25 Thread Don Hinton via lldb-dev
I'd also like to include the path in the pattern, e.g., -f "*/clang/*", which would cut the number of files examined by about half for my use case. On Tue, Oct 24, 2017 at 7:24 PM, Zachary Turner wrote: > Pass a pattern to the -f option. > > On Tue, Oct 24, 2017 at 7:18 PM Don Hinton wrote: >