[lldb-dev] [Bug 42981] New: cross-compile lldb for ios fails

2019-08-13 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=42981 Bug ID: 42981 Summary: cross-compile lldb for ios fails Product: lldb Version: 8.0 Hardware: Macintosh OS: MacOS X Status: NEW Severity: enhancement Pr

[lldb-dev] lldb-mi has been moved to its own GitHub repository

2019-08-13 Thread Raphael “Teemperor” Isemann via lldb-dev
Hi all, lldb-mi has been moved out of the LLDB source tree into its own GitHub repository here: https://github.com/lldb-tools/lldb-mi lldb-mi is now a standalone tool that builds against LLDB, but is no longer build as part of LLDB. The implications for

[lldb-dev] [Bug 42939] ios lldb cross-compiling

2019-08-13 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=42939 Jonas Devlieghere changed: What|Removed |Added Resolution|--- |DUPLICATE Status|NEW

Re: [lldb-dev] lldb-mi has been moved to its own GitHub repository

2019-08-13 Thread Ted Woodward via lldb-dev
The build instructions in README.md are a tad sparse: Build cmake . ; cmake --build . Where do we put it in relation to an lldb build? Does it need the llvm/lldb sources? Is it built against an lldb build, or an lldb install? Ted From: lldb-dev On Behalf Of Raphael “Teemperor” Isemann via lld

Re: [lldb-dev] lldb-mi has been moved to its own GitHub repository

2019-08-13 Thread Raphael Isemann via lldb-dev
Agreed, I made a PR (which is work in progress): https://github.com/lldb-tools/lldb-mi/pull/5 (I didn't try compiling against a compiled LLDB, so that is subject to change). Am Di., 13. Aug. 2019 um 19:29 Uhr schrieb Ted Woodward : > > The build instructions in README.md are a tad sparse: > > Buil

[lldb-dev] "Correctly use GetLoadedModuleList to take advantage of libraries-svr4" can cause LLDB to abort

2019-08-13 Thread Ted Woodward via lldb-dev
Hi Antonio, This is in regards to https://reviews.llvm.org/D64013 , specifically this code in ProcessGDBRemote::GetImageInfoAddress: if (addr == LLDB_INVALID_ADDRESS) { llvm::Expected list = GetLoadedModuleList(); if (!list) { Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSe

Re: [lldb-dev] "Correctly use GetLoadedModuleList to take advantage of libraries-svr4" can cause LLDB to abort

2019-08-13 Thread Jim Ingham via lldb-dev
IIUC an llvm::Expected is only supposed to abort if you leave its scope with an un-consumed error. LLDB_LOG_ERROR is supposed to consume the error - the code looks like it is doing that. So if you are still seeing an abort when there's an error, then it sounds like something is wrong with LLDB

[lldb-dev] [Bug 42981] cross-compile lldb for ios fails

2019-08-13 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=42981 Davide Italiano changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---