https://github.com/numerodix/gdb-by-example
Spoon feeding you gdb because organic gdb is too chewy
https://github.com/numerodix/gdb-by-example
c c-plus-plus debugging gdb gdb-commands
Last synced: 4 months ago
JSON representation
Spoon feeding you gdb because organic gdb is too chewy
- Host: GitHub
- URL: https://github.com/numerodix/gdb-by-example
- Owner: numerodix
- Created: 2019-11-27T08:35:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-05T09:00:52.000Z (over 5 years ago)
- Last Synced: 2025-01-01T21:41:30.313Z (6 months ago)
- Topics: c, c-plus-plus, debugging, gdb, gdb-commands
- Language: C
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gdb by example
Why gdb by example, doesn't gdb just know how to display things in the way we want? The answer is no, we have to tell it.
## C
* [C primitive types](c-primitive/doc.md#c-primitive-types)
* [Characters and strings](c-primitive/doc.md#characters-and-strings)
* [char](c-primitive/doc.md#char)
* [wchar_t](c-primitive/doc.md#wchar_t)
* [Unsigned integers](c-primitive/doc.md#unsigned-integers)
* [unsigned char](c-primitive/doc.md#unsigned-char)
* [unsigned short](c-primitive/doc.md#unsigned-short)
* [unsigned int](c-primitive/doc.md#unsigned-int)
* [unsigned long long](c-primitive/doc.md#unsigned-long-long)
* [Signed integers](c-primitive/doc.md#signed-integers)
* [char](c-primitive/doc.md#char)
* [short](c-primitive/doc.md#short)
* [int](c-primitive/doc.md#int)
* [long long](c-primitive/doc.md#long-long)
* [Floating point numbers](c-primitive/doc.md#floating-point-numbers)
* [float](c-primitive/doc.md#float)
* [double](c-primitive/doc.md#double)## C++
* [C++ standard library](cpp-stdlib/doc.md#c++-standard-library)
* [string](cpp-stdlib/doc.md#string)## Qt
* [Qt basic types](qt-basic/doc.md#qt-basic-types)
* [QString](qt-basic/doc.md#qstring)## Tools used
* gcc 7.4.0
* gdb 8.1.0