Re: [lldb-dev] Not able to find process plugin for core file

2016-03-14 Thread Bhushan Attarde via lldb-dev
Hi Greg, I tried specifying a full triple but it's still the same issue. (lldb) target create --arch=mips64el-pc-linux "coredump.elf" --core "core_mips" error: Unable to find process plug-in for core file '/home/battarde/test/core_mips' LLDB correctly recognises that "core_mips" is a core file

[lldb-dev] [Bug 26937] New: TestRegisterVariables failing with Clang 3.4.1 on FreeBSD

2016-03-14 Thread via lldb-dev
https://llvm.org/bugs/show_bug.cgi?id=26937 Bug ID: 26937 Summary: TestRegisterVariables failing with Clang 3.4.1 on FreeBSD Product: lldb Version: unspecified Hardware: PC OS: FreeBSD Status: NE

Re: [lldb-dev] SymbolFile::FindGlobalVariables

2016-03-14 Thread Zachary Turner via lldb-dev
It looks like i need to get type information working before variables, so I'll work on that first and come back to this On Fri, Mar 11, 2016 at 5:05 PM Greg Clayton wrote: > > > On Mar 11, 2016, at 1:02 PM, Zachary Turner wrote: > > > > How large of a change do you think it would be to abstract

Re: [lldb-dev] Not able to find process plugin for core file

2016-03-14 Thread Greg Clayton via lldb-dev
It might be that no one has implemented the deserializing of the MIPS registers yet? Best to step through the code and figure out what is going wrong. Greg > On Mar 14, 2016, at 3:14 AM, Bhushan Attarde > wrote: > > Hi Greg, > > I tried specifying a full triple but it's still the same issue.

Re: [lldb-dev] SymbolFile::FindGlobalVariables

2016-03-14 Thread Zachary Turner via lldb-dev
Bleh, it looks like some abstraction will be needed at this level too, because ClangASTContext assumes a DWARFASTParser. This doesn't seem too bad, because the only code that actually assumes it's a DWARFASTParser is in SymbolFileDWARF. So maybe creating a DebugInfoASTParser in lldb/Symbol and th