<div dir="ltr">Hi,<div><br></div><div>I've been looking into why expression evaluation is failing when targeting a remote Linux machine from Mac lldb host and it seems there are only 2 distinct problems remaining - both around memory allocation:</div><div><br></div><div>1. Can't find symbol for mmap.</div><div>2. Once found, lldb is calling mmap with incorrect constant values for MAP_ANON.</div><div><br></div>For problem 1, the library being linked against (e.g. /lib/x86_64-linux-gnu/<a href="http://libc-2.19.so">libc-2.19.so</a>) is copied into a local module cache, but we don't copy the unstripped library in /usr/lib/debug/lib/x86_64-linux-gnu/<a href="http://libc-2.19.so">libc-2.19.so</a> (I'm assuming we can't call mmap from the symtab file given SymbolFileSymtab::FindFunctions returns 0). To avoid having to duplicate the symbol discovery (in Symbols::LocateExecutableSymbolFile) we should probably ask lldb-platform on the target to find the symbol files for the current target (I'm thinking Platform::ResolveSymbolFile looks like the right place).<br><div><br></div><div>For problem 2, we're building the argument list to mmap and the constant for MAP_ANON on macosx is 0x1000 whereas for linux it's 0x20. I'm not sure what the right way to fix this is, I could imagine asking Platform to allocate memory, but this would likely be an involved change, or perhaps being able to ask platform for various OS specific const values which would be hard-coded into it when built for the target.</div><div><br></div><div>Anyways, I wanted to send this out to see if anyone had any thoughts on either of these issues or was already working on them. I have verified (by hacking in the correct const values for linux and placing debug libs in a path where they will be found) that this fixes expression evaluation (and 14 tests start passing) for mac->linux debugging.</div><div><br></div><div>Thanks in advance for any suggestions,</div><div>Rob</div><div><br></div><div>P.S. the 14 tests passing mac->linux by fixing this (for other people looking at cross platform tests):</div><div><div>Test11588.py</div><div>TestAnonymous.py</div><div>TestBreakpointConditions.py</div><div>TestCPPStaticMethods.py</div><div>TestCStrings.py</div><div>TestCallStdStringFunction.py</div><div>TestDataFormatterCpp.py</div><div>TestDataFormatterStdList.py</div><div>TestExprDoesntBlock.py</div><div>TestExprHelpExamples.py</div><div>TestFunctionTypes.py</div><div>TestPrintfAfterUp.py</div><div>TestSBValuePersist.py</div><div>TestSetValues.py</div></div><div><br></div></div>