Skip to content

Instantly share code, notes, and snippets.

View thormighti's full-sized avatar

peter Abeshi thormighti

View GitHub Profile
@CynicalApe
CynicalApe / lldb_debug_sample.md
Last active July 16, 2024 22:17
Debugging a simple program with LLDB

Debugging a simple program with LLDB

Sample C++ code, let's call it test.cpp.

#include <iostream>
#include <string>

typedef struct goo {
	int gooInt;
	std::string gooString;
}GOO;