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

https://github.com/vlmarkov/micro-debugger

The x86-64 C\C++ code debugging-tool
https://github.com/vlmarkov/micro-debugger

c cpp debugging-tool linux x86-64

Last synced: 3 months ago
JSON representation

The x86-64 C\C++ code debugging-tool

Awesome Lists containing this project

README

          

# Micro Debugger

[![pipeline status](https://gitlab.com/vladislav-markov/micro-debugger/badges/master/pipeline.svg)](https://gitlab.com/vladislav-markov/micro-debugger/-/commits/master)
[![coverage report](https://gitlab.com/vladislav-markov/micro-debugger/badges/master/coverage.svg)](https://gitlab.com/vladislav-markov/micro-debugger/commits/master)

## Dependencies

* c++17
* cmake

## Debugger features

* sets breakpoint by address
* sets breakpoint by source line
* variables inspecting
* register dumping
* stack unwinding

## Useful links
* https://www.linuxjournal.com/article/6100
* https://eli.thegreenplace.net/tag/debuggers
* https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/