search for: lautrec

Displaying 2 results from an estimated 2 matches for "lautrec".

Did you mean: lautre
2013 Jul 16
0
[LLVMdev] make lldb work
...onetheless, 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 Breakpoint 1: where = a.out`main + 67 at bla.cpp:9, address = 0x080484f3 (lldb) breakpoint set -l 12 Breakpoint 2: no locations (pending). WARNING: Unable to resolve breakpoint to any actual locations. (...
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)