Advertisement
Guest User

Untitled

a guest
Feb 11th, 2010
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. AND after installing cairo-dbg:
  2. (gdb) run
  3. Starting program: /usr/bin/python2.6-dbg cairo_actor_segfault.py
  4. [Thread debugging using libthread_db enabled]
  5. /usr/bin/python2.6-dbg: symbol lookup error: /usr/lib/pymodules/python2.6/gtk-2.0/glib/_glib.so: undefined symbol: Py_InitModule4
  6.  
  7. Program exited with code 0177.
  8.  
  9.  
  10.  
  11.  
  12.  
  13. $ gdb --args python2.6-dbg cairo_actor_segfault.py
  14. GNU gdb (GDB) 7.0-ubuntu
  15. Copyright (C) 2009 Free Software Foundation, Inc.
  16. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  17. This is free software: you are free to change and redistribute it.
  18. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  19. and "show warranty" for details.
  20. This GDB was configured as "i486-linux-gnu".
  21. For bug reporting instructions, please see:
  22. <http://www.gnu.org/software/gdb/bugs/>...
  23. Reading symbols from /usr/bin/python2.6-dbg...done.
  24. (gdb) run
  25. Starting program: /usr/bin/python2.6-dbg cairo_actor_segfault.py
  26. [Thread debugging using libthread_db enabled]
  27. Traceback (most recent call last):
  28. File "cairo_actor_segfault.py", line 3, in <module>
  29. import cairo
  30. File "/usr/lib/pymodules/python2.6/cairo/__init__.py", line 1, in <module>
  31. from _cairo import *
  32. ImportError: /usr/lib/pymodules/python2.6/cairo/_cairo.so: undefined symbol: Py_InitModule4
  33. [15031 refs]
  34.  
  35. Program exited with code 01.
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. (gdb) bt full
  46. #0 0x0033d9ce in ?? ()
  47. No symbol table info available.
  48.  
  49.  
  50.  
  51. (gdb) bt
  52. #0 0x0033d9ce in ?? ()
  53.  
  54. AND FULL RUN:
  55. (gdb) run
  56. The program being debugged has been started already.
  57. Start it from the beginning? (y or n) y
  58.  
  59. Starting program: /usr/bin/python cairo_actor_segfault.py
  60. [Thread debugging using libthread_db enabled]
  61. /usr/lib/pymodules/python2.6/clutter/__init__.py:66: Warning: g_set_prgname() called multiple times
  62. _clutter.init()
  63.  
  64. Program received signal SIGSEGV, Segmentation fault.
  65. 0x0033d9ce in ?? ()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement