Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wc-duck/dbgtools
Small collection of debug-related drop-in c/c++-utils
https://github.com/wc-duck/dbgtools
Last synced: 28 days ago
JSON representation
Small collection of debug-related drop-in c/c++-utils
- Host: GitHub
- URL: https://github.com/wc-duck/dbgtools
- Owner: wc-duck
- License: other
- Created: 2013-11-06T18:25:18.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2022-01-02T07:45:08.000Z (almost 3 years ago)
- Last Synced: 2024-08-04T02:09:55.230Z (4 months ago)
- Language: C
- Size: 90.8 KB
- Stars: 228
- Watchers: 17
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeCppGameDev - dbgtools - related drop-in c/c++-utils (C++)
README
[![Build Status](https://travis-ci.org/wc-duck/dbgtools.svg?branch=master)](https://travis-ci.org/wc-duck/dbgtools)
[![Build status](https://ci.appveyor.com/api/projects/status/ebe2yl78l9pv38rv)](https://ci.appveyor.com/project/wc-duck/dbgtools)# About:
Platform independent wrapping of "nice to have" debug functions.* assert.h - implements a replacement for the standard assert() macro supporting callback at assert, and error-message with printf-format.
* callstack.h - implements capturing of callstack/backtrace + translation of captured symbols into name, file, line and offset.
* debugger.h - implements debugger_present to check if a debugger is attached to the process.
* static_assert.h - defines the macro STATIC_ASSERT( condition, message_string ) in an "as good as possible way" depending on compiler features and support. It will try to use builtin support for static_assert and _Static_assert if possible.
* fpe_ctrl.h - implements platform independent functions to get/set floating point exception and enable trapping of the same exceptions.
* hw_breakpoint.h - implements platform independent hardware breakpoints.# Design:
The files are designed to be able to be used by them self, only header and src should be needed by the user and all files
should work by them self and compile with all common compilers without to many specific fixes.# Notes:
* MSVC - callstack_symbols() require linking against Dbghelp.lib.
* GCC/Clang - callstack_symbols() require -rdynamic to be sepcified as link-flag to get valid symbols.# Licence:
```
dbgtools - platform independent wrapping of "nice to have" debug functions.version 0.1, october, 2013
Copyright (C) 2013- Fredrik Kihlander
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.Fredrik Kihlander
```