Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Remote Debugging on Host
- gdb -q ffmpeg
- Reading symbols from /home/yuvraj/screenrecorder/test/ffmpeg...(no debugging symbols found)...done.
- (gdb) remote target 192.168.2.15:2345
- Undefined remote command: "target 192.168.2.15:2345". Try "help remote".
- (gdb) target remote 192.168.2.15:2345
- Remote debugging using 192.168.2.15:2345
- Reading symbols from /lib/ld-linux.so.3...(no debugging symbols found)...done.
- Loaded symbols for /lib/ld-linux.so.3
- 0x41000880 in ?? ()
- (gdb) continue
- Continuing.
- Cannot access memory at address 0x0
- Program received signal SIGSEGV, Segmentation fault.
- 0x410a628c in ?? ()
- (gdb) bt
- #0 0x410a628c in ?? ()
- #1 0x3afc5608 in ?? ()
- Backtrace stopped: previous frame identical to this frame (corrupt stack?)
- (gdb)
- On Target(arm)
- gdbserver :2345 ffmpeg -i /home/developer/MyDocs/tmp.mpeg -threads 1 -o addu.mpeg
- Process ffmpeg created; pid = 2345
- Listening on port 2345
- Remote debugging from host 192.168.2.14
- FFmpeg version SVN-r319, Copyright (c) 2000-2006 Fabrice Bellard, et al.
- configuration: --arch=arm --cross-prefix=arm-none-linux-gnueabi- --prefix=/home/yuvraj/Desktop/screenrecorder/librecorder-arm/dependencies/ --enable-shared --enable-pthreads
- libavutil version: 49.0.2
- libavcodec version: 51.21.0
- libavformat version: 50.6.0
- built on Feb 15 2012 14:16:14, gcc: 4.5.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement