Advertisement
Guest User

Untitled

a guest
Jan 9th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. bckpkol@orangepilite:~/src/sdlarch$ gdb retroarch
  2. GNU gdb (Debian 7.12-6) 7.12.0.20161007-git
  3. Copyright (C) 2016 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. 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 retroarch...(no debugging symbols found)...done.
  17. (gdb) run
  18. Starting program: /usr/bin/retroarch
  19. [Thread debugging using libthread_db enabled]
  20. Using host libthread_db library "/lib/arm-linux-gnueabihf/libthread_db.so.1".
  21. [New Thread 0xb1d681a0 (LWP 19621)]
  22. LIBGL: Initialising gl4es
  23. LIBGL: v1.0.5 built on Jan 9 2018 01:14:38
  24. LIBGL: Using GLES 2.0 backend
  25. LIBGL:loaded: libGLESv2.so
  26. LIBGL:loaded: libEGL.so
  27. LIBGL: Using GLES 2.0 backend
  28. [New Thread 0xb10f31a0 (LWP 19622)]
  29. [New Thread 0xb6fd5b40 (LWP 19623)]
  30. LIBGL: Hardware Limited NPOT detected and used
  31. LIBGL: Extension GL_EXT_blend_minmax detected and used
  32. LIBGL: FBO are in core, and so used
  33. LIBGL: PointSprite are in core, and so used
  34. LIBGL: Extension GL_OES_packed_depth_stencil detected and used
  35. LIBGL: Extension GL_OES_depth24 detected and used
  36. LIBGL: Extension GL_OES_rgb8_rgba8 detected and used
  37. LIBGL: Extension GL_EXT_texture_format_BGRA8888 detected and used
  38. LIBGL: Extension GL_OES_depth_texture detected and used
  39. LIBGL: Max vertex attrib: 16
  40. LIBGL: Extension GL_OES_standard_derivatives detected and used
  41. LIBGL: Max texture size: 4096
  42. LIBGL: Max Varying Vector: 12
  43. LIBGL: Texture Units: 8(8), Max lights: 8, Max planes: 6
  44. LIBGL: Targeting OpenGL 2.1
  45. LIBGL: Current folder is:/home/bckpkol/src/sdlarch
  46. glXQueryExtension(0x65a9c8, 0x6a5618, 0x6a561c)
  47. glXQueryExtensionString(0x65a9c8, 0)
  48. glXGetProcAddress: glXGetSwapIntervalMESA not found.
  49. glXChooseVisual(0x65a9c8, 0, 0xbeff937c)
  50. glXChooseFBConfig(0x65a9c8, 0, 0xbeff937c, 0xbeff9360)
  51. FBConfig depthBits=16
  52. glXCreateContext(0x65a9c8, 0x6a5e78, (nil), 1), latest_visual=0x6a5710, fbcontext_count=0 => 0x6a6010
  53. glXMakeCurrent(0x65a9c8, 0x4600002, 0x6a6010), isPBuffer(drawable)=0, context->drawable=(nil), context->eglSurface=(nil) => True
  54. glXMakeCurrent(0x65a9c8, (nil), (nil)), isPBuffer(drawable)=0, context->drawable=(nil), context->eglSurface=(nil) => True
  55. glXDestroyContext(0x65a9c8, 0x6a6010), fbcontext_count=0, ctx_type=0
  56. glXQueryExtension(0x65a9c8, 0x6a5868, 0x6a586c)
  57. glXQueryExtensionString(0x65a9c8, 0)
  58. glXGetProcAddress: glXGetSwapIntervalMESA not found.
  59. glXChooseVisual(0x65a9c8, 0, 0xbeff9364)
  60. glXChooseFBConfig(0x65a9c8, 0, 0xbeff9364, 0xbeff9348)
  61. FBConfig depthBits=16
  62. glXCreateContext(0x65a9c8, 0x6b56d0, (nil), 1), latest_visual=0x678588, fbcontext_count=0 => 0x6b5868
  63. glXMakeCurrent(0x65a9c8, 0x4600006, 0x6b5868), isPBuffer(drawable)=0, context->drawable=(nil), context->eglSurface=(nil) => True
  64. glXQueryDrawable(0x65a9c8, 0x4600006(0), GLX_SWAP_INTERVAL_EXT, 0xbeff9558 = 1)
  65. glXSwapInterval(1)
  66. glXSwapInterval(1)
  67. glXQueryDrawable(0x65a9c8, 0x4600006(0), GLX_SWAP_INTERVAL_EXT, 0xbeff9570 = 1)
  68. [New Thread 0xac71a1a0 (LWP 19650)]
  69.  
  70. Thread 1 "retroarch" received signal SIGSEGV, Segmentation fault.
  71. 0x004f2668 in ?? ()
  72. (gdb) backtrace
  73. #0 0x004f2668 in ?? ()
  74. #1 0x004d2bb4 in ?? ()
  75. Backtrace stopped: previous frame identical to this frame (corrupt stack?)
  76. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement