[lldb-dev] Need your help in target.GetProcess().ReadMemory

2017-07-24 Thread Laghzaoui Mohammed via lldb-dev
Hello I would like to get value of an given adresss ,and I do this in command python: addr = lldb.SBAddress("0x942604a2", target) err = lldb.SBError() size = 0x100 membuff = target.GetProcess().ReadMemory(addr, size, err) when I run it I get this Error: NotImplementedError: Wrong number of argu

[lldb-dev] LLDB tests

2017-07-24 Thread Steve Trotter via lldb-dev
Hi all, I'm fairly new to LLVM and LLDB, I became interested in this project about 3 months back and I'm hoping to be able to contribute to improving LLDB in time. I've been trying to get to grips with the code and have been looking into the tests as a rough guide to how things work, however I hav

[lldb-dev] Remote debugging - unix socket and/or specific port

2017-07-24 Thread Mark Nelson via lldb-dev
Has there been any change in this since reported here : http://lists.llvm.org/pipermail/lldb-dev/2016-June/010616.html It is pretty clear that that the remote-linux platform is trying to open additional ports to talk to lldb-server, and if that server is in a container we need to expose them. But

Re: [lldb-dev] Trying to use socketpair for lldb-server fails

2017-07-24 Thread Ted Woodward via lldb-dev
This is big time overkill, but I wasn’t sure where the problem I was tracking down was: “lldb all:linux all:gdb-remote all” Ted -- Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project Fro

Re: [lldb-dev] LLDB tests

2017-07-24 Thread Sean Callanan via lldb-dev
Steve, since you asked about failures, here are some public bots you can look at to get a general sense of how we are doing: * http://lab.llvm.org:8011/builders [various platforms] * http://lab.llvm.org:8080/green/view/LLDB/job/lldb_build_test/ [OS X] * https://ci.swift.org/view/All/job/oss

[lldb-dev] [Bug 33875] TestWithModuleDebugging fails since llvm r308708

2017-07-24 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=33875 Adrian Prantl changed: What|Removed |Added Resolution|--- |FIXED Status|ASSIGNED

Re: [lldb-dev] LLDB tests

2017-07-24 Thread Jim Ingham via lldb-dev
> On Jul 24, 2017, at 3:03 AM, Steve Trotter via lldb-dev > wrote: > > Hi all, > > I'm fairly new to LLVM and LLDB, I became interested in this project about 3 > months back and I'm hoping to be able to contribute to improving LLDB in > time. I've been trying to get to grips with the code an