Advertisement
Guest User

Untitled

a guest
Jan 13th, 2025
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GDB 2.57 KB | Software | 0 0
  1. (gdb) run
  2. Starting program: /home/user1/dev/lovr/second_touch/build/bin/lovr
  3.  
  4. This GDB supports auto-downloading debuginfo from the following URLs:
  5.   <https://debuginfod.archlinux.org>
  6. Enable debuginfod for this session? (y or [n]) y
  7. Debuginfod has been enabled.
  8. To make this setting permanent, add 'set debuginfod enabled on' to .gdbinit.
  9. [Thread debugging using libthread_db enabled]
  10. Using host libthread_db library "/usr/lib/libthread_db.so.1".
  11. lovr: /usr/src/debug/glfw/glfw-3.4/src/window.c:868: glfwGetWindowAttrib: Assertion `window != NULL' failed.
  12.  
  13. Program received signal SIGABRT, Aborted.
  14. __pthread_kill_implementation (threadid=<optimized out>, signo=signo@entry=6, no_tid=no_tid@entry=0) at pthread_kill.c:44
  15. 44       return INTERNAL_SYSCALL_ERROR_P (ret) ? INTERNAL_SYSCALL_ERRNO (ret) : 0;
  16. (gdb) bt
  17. #0  __pthread_kill_implementation (threadid=<optimized out>, signo=signo@entry=6, no_tid=no_tid@entry=0) at pthread_kill.c:44
  18. #1  0x00007ffff72a5463 in __pthread_kill_internal (threadid=<optimized out>, signo=6) at pthread_kill.c:78
  19. #2  0x00007ffff724c120 in __GI_raise (sig=sig@entry=6) at ../sysdeps/posix/raise.c:26
  20. #3  0x00007ffff72334c3 in __GI_abort () at abort.c:79
  21. #4  0x00007ffff72333df in __assert_fail_base (fmt=0x7ffff73c3c20 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x7ffff7f6b03c "window != NULL",
  22.     file=file@entry=0x7ffff7f6e7c8 "/usr/src/debug/glfw/glfw-3.4/src/window.c", line=line@entry=868, function=function@entry=0x7ffff7f8be50 <__PRETTY_FUNCTION__.15.lto_priv.1> "glfwGetWindowAttrib")
  23.     at assert.c:94
  24. #5  0x00007ffff7244177 in __assert_fail (assertion=assertion@entry=0x7ffff7f6b03c "window != NULL", file=file@entry=0x7ffff7f6e7c8 "/usr/src/debug/glfw/glfw-3.4/src/window.c", line=line@entry=868,
  25.     function=function@entry=0x7ffff7f8be50 <__PRETTY_FUNCTION__.15.lto_priv.1> "glfwGetWindowAttrib") at assert.c:103
  26. #6  0x00007ffff7f52758 in glfwGetWindowAttrib (handle=<optimized out>, attrib=<optimized out>) at /usr/src/debug/glfw/glfw-3.4/src/window.c:868
  27. #7  0x0000555555922aa0 in os_window_is_focused ()
  28. #8  0x00005555558eb5d5 in simulator_init ()
  29. #9  0x00005555558d3a11 in lovrHeadsetInit ()
  30. #10 0x00005555558d81d6 in luaopen_lovr_headset ()
  31. #11 0x00007ffff7f27836 in lj_BC_FUNCC () from libluajit.so
  32. #12 0x00007ffff7e995fe in lua_call () from libluajit.so
  33. #13 0x00007ffff7e8c4c3 in lj_cf_package_require () from libluajit.so
  34. #14 0x00007ffff7f27836 in lj_BC_FUNCC () from libluajit.so
  35. #15 0x00007ffff7e99c7a in lua_resume () from libluajit.so
  36. #16 0x00005555557cbbda in luax_resume ()
  37. #17 0x00005555557ce0cd in main ()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement