Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created March 31, 2020 04:57
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 r-ryantm/d102962e6cd00aa7c6d1e1fdce1bc0e0 to your computer and use it in GitHub Desktop.
Save r-ryantm/d102962e6cd00aa7c6d1e1fdce1bc0e0 to your computer and use it in GitHub Desktop.
/nix/store/r0x63wkbpsj81pdn5mmx0c2d1fpvqj4r-gdbgui-0.13.2.0
├── bin
│   └── gdbgui
├── lib
│   └── python3.7
│   └── site-packages
│   ├── gdbgui
│   │   ├── backend.py
│   │   ├── htmllistformatter.py
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── __pycache__
│   │   │   ├── backend.cpython-37.pyc
│   │   │   ├── htmllistformatter.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── SSLify.cpython-37.pyc
│   │   │   └── statemanager.cpython-37.pyc
│   │   ├── src
│   │   │   └── js
│   │   │   ├── Actions.js
│   │   │   ├── BinaryLoader.jsx
│   │   │   ├── Breakpoints.jsx
│   │   │   ├── constants.js
│   │   │   ├── ControlButtons.jsx
│   │   │   ├── CopyToClipboard.tsx
│   │   │   ├── Expressions.jsx
│   │   │   ├── FileOps.jsx
│   │   │   ├── FileSystem.jsx
│   │   │   ├── FoldersView.jsx
│   │   │   ├── GdbApi.jsx
│   │   │   ├── GdbCommandInput.jsx
│   │   │   ├── GdbConsoleContainer.jsx
│   │   │   ├── GdbConsole.jsx
│   │   │   ├── gdbgui.jsx
│   │   │   ├── GdbguiModal.jsx
│   │   │   ├── GdbMiOutput.jsx
│   │   │   ├── GdbVariable.jsx
│   │   │   ├── GlobalEvents.js
│   │   │   ├── HoverVar.jsx
│   │   │   ├── InferiorProgramInfo.jsx
│   │   │   ├── InitialStoreData.js
│   │   │   ├── Links.tsx
│   │   │   ├── Locals.jsx
│   │   │   ├── Memory.jsx
│   │   │   ├── MemoryLink.tsx
│   │   │   ├── MiddleLeft.jsx
│   │   │   ├── process_gdb_response.js
│   │   │   ├── ReactTable.jsx
│   │   │   ├── register_descriptions.js
│   │   │   ├── Registers.jsx
│   │   │   ├── RightSidebar.jsx
│   │   │   ├── Settings.jsx
│   │   │   ├── SourceCodeHeading.jsx
│   │   │   ├── SourceCode.jsx
│   │   │   ├── SourceFileAutocomplete.jsx
│   │   │   ├── StatusBar.jsx
│   │   │   ├── tests
│   │   │   │   └── Util.jest.js
│   │   │   ├── Threads.jsx
│   │   │   ├── ToolTip.jsx
│   │   │   ├── ToolTipTourguide.jsx
│   │   │   ├── TopBar.jsx
│   │   │   ├── Tree.js
│   │   │   ├── types.d.ts
│   │   │   └── Util.js
│   │   ├── SSLify.py
│   │   ├── statemanager.py
│   │   ├── static
│   │   │   ├── css
│   │   │   │   ├── gdbgui.css
│   │   │   │   └── splitjs-gdbgui.css
│   │   │   ├── favicon.ico
│   │   │   ├── images
│   │   │   │   ├── github.jpg
│   │   │   │   ├── paypal.svg
│   │   │   │   ├── ploticon_orig.png
│   │   │   │   ├── ploticon.png
│   │   │   │   └── twitter.png
│   │   │   ├── js
│   │   │   │   ├── build.js
│   │   │   │   └── build.js.map
│   │   │   └── vendor
│   │   │   ├── css
│   │   │   │   ├── animate.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── gdbgui_awesomeplete.css
│   │   │   │   └── pygments
│   │   │   │   ├── emacs.css
│   │   │   │   ├── light.css
│   │   │   │   ├── monokai.css
│   │   │   │   └── vim.css
│   │   │   ├── fonts
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── images
│   │   │   │   └── splitjs
│   │   │   │   └── grips
│   │   │   │   └── horizontal.png
│   │   │   └── js
│   │   │   ├── awesomeplete.min.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── jquery.flot-0.8.3.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── lodash.min.js
│   │   │   ├── moment.min.js
│   │   │   ├── socket.io-2.0.3.min.js
│   │   │   ├── socket.io.js.map
│   │   │   ├── splitjs.min-1.2.0.js
│   │   │   └── vis-4.20.1.min.js
│   │   ├── templates
│   │   │   ├── dashboard.html
│   │   │   ├── gdbgui.html
│   │   │   └── shutdown.html
│   │   └── VERSION.txt
│   └── gdbgui-0.13.2.0.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
24 directories, 99 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment