Advertisement
aaditya

ristretto backtrace

Mar 23rd, 2015
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. $ gdb ristretto
  2. GNU gdb (GDB) 7.6.1
  3. Copyright (C) 2013 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 "x86_64-slackware-linux".
  9. For bug reporting instructions, please see:
  10. <http://www.gnu.org/software/gdb/bugs/>...
  11. Reading symbols from /usr/bin/ristretto...(no debugging symbols found)...done.
  12. (gdb) run
  13. Starting program: /usr/bin/ristretto
  14. warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7ffff7ffa000
  15. warning: Could not load shared library symbols for linux-vdso.so.1.
  16. Do you need "set solib-search-path" or "set sysroot"?
  17. Traceback (most recent call last):
  18. File "/usr/share/gdb/auto-load/usr/lib64/libgobject-2.0.so.0.3600.4-gdb.py", line 9, in <module>
  19. from gobject import register
  20. File "/usr/share/glib-2.0/gdb/gobject.py", line 3, in <module>
  21. import gdb.backtrace
  22. ImportError: No module named backtrace
  23. [Thread debugging using libthread_db enabled]
  24. Using host libthread_db library "/lib64/libthread_db.so.1".
  25. [New Thread 0x7fffeb333700 (LWP 8360)]
  26.  
  27. Program received signal SIGSEGV, Segmentation fault.
  28. 0x00007ffff6946570 in gdk_pixbuf_saturate_and_pixelate () from /usr/lib64/libgdk_pixbuf-2.0.so.0
  29. (gdb) backtrace
  30. #0 0x00007ffff6946570 in gdk_pixbuf_saturate_and_pixelate () from /usr/lib64/libgdk_pixbuf-2.0.so.0
  31. #1 0x000000000041202f in ?? ()
  32. #2 0x00007ffff5cb2acc in g_type_create_instance () from /usr/lib64/libgobject-2.0.so.0
  33. #3 0x00007ffff5c97818 in ?? () from /usr/lib64/libgobject-2.0.so.0
  34. #4 0x00007ffff5c99291 in g_object_newv () from /usr/lib64/libgobject-2.0.so.0
  35. #5 0x00007ffff5c9985c in g_object_new () from /usr/lib64/libgobject-2.0.so.0
  36. #6 0x000000000041d6d2 in ?? ()
  37. #7 0x00007ffff5cb2acc in g_type_create_instance () from /usr/lib64/libgobject-2.0.so.0
  38. #8 0x00007ffff5c97818 in ?? () from /usr/lib64/libgobject-2.0.so.0
  39. #9 0x00007ffff5c98d99 in g_object_newv () from /usr/lib64/libgobject-2.0.so.0
  40. #10 0x00007ffff5c9985c in g_object_new () from /usr/lib64/libgobject-2.0.so.0
  41. #11 0x000000000041fc41 in ?? ()
  42. #12 0x000000000040eeee in ?? ()
  43. #13 0x00007ffff3a53d05 in __libc_start_main () from /lib64/libc.so.6
  44. #14 0x000000000040f0b9 in ?? ()
  45. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement