C lldb Sending vRun packet failed

Hi, looking for help using lldb. I'm seeing this on amd64 Ivy Bridge, fresh/stock installs of either 13.5-RELEASE or 14.3-RELEASE, with base, base-dbg, kernel. When I try to run any program under lldb, it hangs for 20 seconds and shows the error below. Happens with both root and regular user. Any ideas? Is there something else I need to install/configure?

root@frigg:~$ cc -g hello.c -o hello
root@frigg:~$ lldb ./hello
(lldb) target create "./hello"
Current executable set to '/root/hello' (x86_64).
(lldb) r
error: Cannot launch '/root/hello': Sending vRun packet failed
(lldb)

GDB works fine.

The program doesn't seem to matter: this is trivial/obvious hello world program.

I've also got an ia32 box running 13.5-RELEASE, lldb works fine there.

Thanks!
 
Did you enable a bunch of those security options during the installation? One of them deals with being able to debug, or not, if I remember correctly.

Edit: This one I believe: security.bsd.unprivileged_proc_debug
 
Back
Top