An open API service indexing awesome lists of open source software.

https://github.com/menci/mdb

Menci DeBugger: Simple Linux x86_64 debugger with ptrace(2)
https://github.com/menci/mdb

Last synced: about 1 month ago
JSON representation

Menci DeBugger: Simple Linux x86_64 debugger with ptrace(2)

Awesome Lists containing this project

README

          

# Menci DeBugger

Simple Linux x86_64 debugger with ptrace(2).

Only works with single-threaded static-linked programs.

# Dependencies

* Linux
* C++ compiler with C++ 17 support
* CMake (>= 3.0)
* GNU Readline
* GNU Source-highlight
* GNU Binutils
* Zydis

# Build

```bash
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
make -j
```

# Usage

```bash
# In build/ directory
bin/mdb ~/a.out # The being-debugged file
```

Enter `h` for help.