Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

lldb error: process launch failed: unable to locate lldb-server

Tags:

lldb

clang++

I'm running Xubuntu 16.04. After installing lldb from the repositories, I get the following output when I try to use it:

lldb foo
(lldb) target create "foo"
Current executable set to 'foo' (x86_64).
(lldb) r
error: process launch failed: unable to locate lldb-server

Any ideas what I'm missing?

like image 662
ToxicTeacakes Avatar asked May 09 '16 03:05

ToxicTeacakes


1 Answers

After an hour or so of fiddling around, I found the solution. I copied /usr/bin/lldb-server-3.8 and named it /usr/bin/lldb-server. This is probably a problem with the ubuntu package.

like image 169
ToxicTeacakes Avatar answered Sep 30 '22 03:09

ToxicTeacakes