Displaying 2 results from an estimated 2 matches for "r186406".
2013 Jul 16
0
[LLVMdev] make lldb work
...on 32-bit hosts, so it's possible you found a new bug. In addition, there are some known bugs with debugging 32-bit programs (even on 64-bit hosts) which will we hopefully be resolving soon.
Nonetheless, I was unable to reproduce the behaviour you reported (with lldb-3.4 Ubuntu package version r186406). What's the output of "breakpoint list" -- does LLDB resolve any address for the breakpoint?
Here is my LLDB session on a 64-bit host debugging a 32-bit program:
daniel at lautrec:~$ lldb ./a.out
Current executable set to './a.out' (i386).
(lldb) breakpoint set -l 8
Breakpo...
2013 Jul 16
2
[LLVMdev] make lldb work
Sorry if asked before.
I'm new to LLDB, try to use it according to the lldb project site. I write
some very simple code like:
#include <stdio.h>
int main(int argc, char **argv)
{
int counter = 0;
while ( counter < 10 )
counter++;
printf("counter: %d\n", counter);
return 0;
}
and the session like:
$ clang -g main.c
$ lldb-3.4 a.out
(lldb)