These sort of issues I have faced in the past and in my case the reason was I used the incorrect host triple while building LLDB (LLVM etc).
Example: Assuming you are using GCC/G++ compiler to build LLVM+LLDB, I would set the LLVM_HOST_TRIPLE to the one used in the library path and not essentially that of the 'Target' in 'gcc -v'. $ gcc -v .... Target: i686-linux-gnu ........... $ ldd /usr/bin/gcc ........ libc.so.6 => /lib/i386-linux-gnu/libc.so.6 .............. Now, I would set LLVM_HOST_TRIPLE to i386-linux-gnu but not i686-linux-gnu. See if that works for you. - Ramana > Hi > You mean should use “platform select remote-linux” ? I use it but also report > error: unable to launch a GDB server on 'debian-armhf.""' > in-addition, you said gdb-server is “GNU GDB server” or just lldb-server > services ? > Best Regards > —cuibixiong _______________________________________________ lldb-dev mailing list lldb-dev@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev