Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 3, 2019 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/40981bb67c4b017f63f488ac9382e5a3 to your computer and use it in GitHub Desktop.
Save ryantm/40981bb67c4b017f63f488ac9382e5a3 to your computer and use it in GitHub Desktop.
/nix/store/qzs3h03819p7zq1cznnjmg2rf46ryc4d-gdb-8.2.1
├── bin
│   ├── gcore
│   ├── gdb
│   ├── gdb-add-index
│   └── gdbserver
├── include
│   └── gdb
│   └── jit-reader.h
├── lib
│   └── libinproctrace.so
├── nix-support
│   └── propagated-native-build-inputs
└── share
├── gdb
│   ├── python
│   │   └── gdb
│   │   ├── command
│   │   │   ├── explore.py
│   │   │   ├── frame_filters.py
│   │   │   ├── __init__.py
│   │   │   ├── pretty_printers.py
│   │   │   ├── prompt.py
│   │   │   ├── type_printers.py
│   │   │   ├── unwinders.py
│   │   │   └── xmethods.py
│   │   ├── FrameDecorator.py
│   │   ├── FrameIterator.py
│   │   ├── frames.py
│   │   ├── function
│   │   │   ├── as_string.py
│   │   │   ├── caller_is.py
│   │   │   ├── __init__.py
│   │   │   └── strfns.py
│   │   ├── __init__.py
│   │   ├── printer
│   │   │   ├── bound_registers.py
│   │   │   └── __init__.py
│   │   ├── printing.py
│   │   ├── prompt.py
│   │   ├── types.py
│   │   ├── unwinder.py
│   │   └── xmethod.py
│   ├── syscalls
│   │   ├── aarch64-linux.xml
│   │   ├── amd64-linux.xml
│   │   ├── arm-linux.xml
│   │   ├── freebsd.xml
│   │   ├── gdb-syscalls.dtd
│   │   ├── i386-linux.xml
│   │   ├── mips-n32-linux.xml
│   │   ├── mips-n64-linux.xml
│   │   ├── mips-o32-linux.xml
│   │   ├── ppc64-linux.xml
│   │   ├── ppc-linux.xml
│   │   ├── s390-linux.xml
│   │   ├── s390x-linux.xml
│   │   ├── sparc64-linux.xml
│   │   └── sparc-linux.xml
│   └── system-gdbinit
│   ├── elinos.py
│   └── wrs-linux.py
├── info
│   ├── annotate.info
│   ├── dir
│   ├── gdb.info
│   ├── gdb.info-1
│   ├── gdb.info-2
│   ├── gdb.info-3
│   ├── gdb.info-4
│   ├── gdb.info-5
│   ├── gdb.info-6
│   ├── gdb.info-7
│   └── stabs.info
├── locale
│   ├── da
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── de
│   │   └── LC_MESSAGES
│   │   └── opcodes.mo
│   ├── es
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── fi
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── fr
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── ga
│   │   └── LC_MESSAGES
│   │   └── opcodes.mo
│   ├── hr
│   │   └── LC_MESSAGES
│   │   └── bfd.mo
│   ├── id
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── it
│   │   └── LC_MESSAGES
│   │   └── opcodes.mo
│   ├── ja
│   │   └── LC_MESSAGES
│   │   └── bfd.mo
│   ├── nl
│   │   └── LC_MESSAGES
│   │   └── opcodes.mo
│   ├── pt
│   │   └── LC_MESSAGES
│   │   └── bfd.mo
│   ├── pt_BR
│   │   └── LC_MESSAGES
│   │   └── opcodes.mo
│   ├── ro
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── ru
│   │   └── LC_MESSAGES
│   │   └── bfd.mo
│   ├── rw
│   │   └── LC_MESSAGES
│   │   └── bfd.mo
│   ├── sr
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── sv
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── tr
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── uk
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   ├── vi
│   │   └── LC_MESSAGES
│   │   ├── bfd.mo
│   │   └── opcodes.mo
│   └── zh_CN
│   └── LC_MESSAGES
│   ├── bfd.mo
│   └── opcodes.mo
└── man
├── man1
│   ├── gcore.1.gz
│   ├── gdb.1.gz
│   ├── gdb-add-index.1.gz
│   └── gdbserver.1.gz
└── man5
└── gdbinit.5.gz
63 directories, 97 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment