Advertisement
Guest User

Untitled

a guest
Aug 18th, 2014
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. [nido@dinky jaques]$ gdb ./test
  2. GNU gdb (GDB) Fedora 7.7.1-17.fc20
  3. Copyright (C) 2014 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-redhat-linux-gnu".
  9. Type "show configuration" for configuration details.
  10. For bug reporting instructions, please see:
  11. <http://www.gnu.org/software/gdb/bugs/>.
  12. Find the GDB manual and other documentation resources online at:
  13. <http://www.gnu.org/software/gdb/documentation/>.
  14. For help, type "help".
  15. Type "apropos word" to search for commands related to "word"...
  16. Reading symbols from ./test...(no debugging symbols found)...done.
  17. (gdb) set disable-randomization off
  18. (gdb) run
  19. Starting program: /home/nido/code/jaques/test
  20. [Thread debugging using libthread_db enabled]
  21. Using host libthread_db library "/lib64/libthread_db.so.1".
  22. Detaching after fork from child process 11895.
  23.  
  24. Program received signal SIGSEGV, Segmentation fault.
  25. 0x00007f2d18900076 in __sanitizer::ForEachMappedRegion(link_map*, void (*)(void const*, unsigned long)) ()
  26. Missing separate debuginfos, use: debuginfo-install SDL2-2.0.3-1.fc20.x86_64 glibc-2.18-12.fc20.x86_64 libX11-1.6.1-1.fc20.x86_64 libXau-1.0.8-2.fc20.x86_64 libgcc-4.8.3-1.fc20.x86_64 libstdc++-4.8.3-1.fc20.x86_64 libxcb-1.9.1-3.fc20.x86_64
  27. (gdb) bt
  28. #0 0x00007f2d18900076 in __sanitizer::ForEachMappedRegion(link_map*, void (*)(void const*, unsigned long)) ()
  29. #1 0x00007f2d188c859e in dlopen ()
  30. #2 0x00007f2d184115f3 in SDL_LoadObject_REAL () from /lib64/libSDL2-2.0.so.0
  31. #3 0x00007f2d1841470d in SDL_X11_LoadSymbols () from /lib64/libSDL2-2.0.so.0
  32. #4 0x00007f2d1841c9a6 in X11_Available () from /lib64/libSDL2-2.0.so.0
  33. #5 0x00007f2d184107c3 in SDL_VideoInit_REAL () from /lib64/libSDL2-2.0.so.0
  34. #6 0x00007f2d18379bcf in SDL_InitSubSystem_REAL () from /lib64/libSDL2-2.0.so.0
  35. #7 0x00007f2d18906cbd in main ()
  36. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement