Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. pi@raspi ~ $ gdb --args mono bassmixchk.exe
  2. GNU gdb (GDB) 7.4.1-debian
  3. Copyright (C) 2012 Free Software Foundation, Inc.
  4. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  5. This is free software: you are free to change and redistribute it.
  6. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  7. and "show warranty" for details.
  8. This GDB was configured as "arm-linux-gnueabihf".
  9. For bug reporting instructions, please see:
  10. <http://www.gnu.org/software/gdb/bugs/>...
  11. Reading symbols from /usr/bin/mono...done.
  12. (gdb) r
  13. Starting program: /usr/bin/mono bassmixchk.exe
  14. [Thread debugging using libthread_db enabled]
  15. Using host libthread_db library "/lib/arm-linux-gnueabihf/libthread_db.so.1".
  16. [New Thread 0xb5bff430 (LWP 3022)]
  17.  
  18. Program received signal SIGSEGV, Segmentation fault.
  19. 0xb5a56f50 in ?? () from /home/pi/libbassmix.so
  20. (gdb) bt
  21. #0 0xb5a56f50 in ?? () from /home/pi/libbassmix.so
  22. #1 0xb6fecfc4 in ?? () from /lib/ld-linux-armhf.so.3
  23. #2 0x00000000 in ?? ()
  24. (gdb) info sharedlibrary libbassmix.so
  25. From To Syms Read Shared Object Library
  26. 0xb5a505e0 0xb5a59328 Yes (*) /home/pi/libbassmix.so
  27. (*): Shared library is missing debugging information.
  28. (gdb) info registers
  29. r0 0xe 14
  30. r1 0xb5a61538 3047560504
  31. r2 0x1247c 74876
  32. r3 0x0 0
  33. r4 0x2 2
  34. r5 0x1 1
  35. r6 0x379350 3642192
  36. r7 0x0 0
  37. r8 0xd 13
  38. r9 0xbeffeba4 3204443044
  39. r10 0xb5a61480 3047560320
  40. r11 0xbeffec54 3204443220
  41. r12 0xbeffebc8 3204443080
  42. sp 0xbeffeb60 0xbeffeb60
  43. lr 0xb6fecfc4 -1224814652
  44. pc 0xb5a56f50 0xb5a56f50
  45. cpsr 0x60000010 1610612752
  46. (gdb) info frame
  47. Stack level 0, frame at 0xbeffeb60:
  48. pc = 0xb5a56f50; saved pc 0xb6fecfc4
  49. called by frame at 0xbeffebb0
  50. Arglist at 0xbeffeb60, args:
  51. Locals at 0xbeffeb60, Previous frame's sp is 0xbeffeb60
  52. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement