Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save johndrinkwater/c4483834910e104109d603a739671935 to your computer and use it in GitHub Desktop.
Save johndrinkwater/c4483834910e104109d603a739671935 to your computer and use it in GitHub Desktop.
Wayout
```terminal
john@joran /mnt/media/Steam/steamapps/common/WayOut ❯ gdb ./WayOut.x86_64
GNU gdb (Ubuntu 7.10-1ubuntu2) 7.10
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./WayOut.x86_64...(no debugging symbols found)...done.
(gdb) bt
No stack.
(gdb) run
Starting program: /mnt/media/Steam/steamapps/common/WayOut/WayOut.x86_64
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Found path: /mnt/media/Steam/steamapps/common/WayOut/WayOut.x86_64
Mono path[0] = '/mnt/media/Steam/steamapps/common/WayOut/WayOut_Data/Managed'
Mono path[1] = '/mnt/media/Steam/steamapps/common/WayOut/WayOut_Data/Mono'
Mono config path = '/mnt/media/Steam/steamapps/common/WayOut/WayOut_Data/Mono/etc'
[New Thread 0x7ffff7fdc700 (LWP 19181)]
[New Thread 0x7ffff2c9e700 (LWP 19182)]
[New Thread 0x7ffff2a9d700 (LWP 19183)]
displaymanager : xrandr version warning. 1.4
client has 4 screens
bdisplaymanager screen (0)(HDMI-0): 1920 x 1080
displaymanager screen (1)(DVI-I-0): 1920 x 1080
Using libudev for joystick management
Importing game controller configs
Program received signal SIGSEGV, Segmentation fault.
0x0000000000651248 in ?? ()
(gdb) bt
#0 0x0000000000651248 in ?? ()
#1 0x0000000000651640 in ?? ()
#2 0x000000000064977e in ?? ()
#3 0x0000000000649c94 in operator new(unsigned long) ()
#4 0x00007ffff6b1d269 in std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) ()
from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#5 0x00007ffff6b1d377 in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#6 0x00007ffff6b1f146 in std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&) () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#7 0x0000000000910ed0 in ?? ()
#8 0x00000000008e9cc5 in ?? ()
#9 0x000000000090dd01 in ?? ()
#10 0x000000000091922d in ?? ()
#11 0x000000000091dae7 in ?? ()
.....
#808 0x000000000091e2e4 in ?? ()
#809 0x000000000090e3bd in ?? ()
#810 0x00000000009192c8 in ?? ()
#811 0x000000000091dae7 in ?? ()
#812 0x000000000091df75 in ?? ()
#813 0x000000000091e2e4 in ?? ()
#814 0x000000000090e3bd in ?? ()
#815 0x00000000009192c8 in ?? ()
#816 0x000000000091dae7 in ?? ()
#817 0x000000000091df75 in ?? ()
#818 0x000000000091e2e4 in ?? ()
#819 0x000000000090e3bd in ?? ()
#820 0x00000000009192c8 in ?? ()
#821 0x000000000091dae7 in ?? ()
#822 0x000000000091df75 in ?? ()
#823 0x000000000091e2e4 in ?? ()
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment