Dump runtime classes as HTML or Graphviz dot files. There is also CSV export functionality. This library is used by MulleObjC to provide debugger and debugging support.
| Release Version | Release Notes | AI Documentation |
|---|---|---|
| RELEASENOTES | DeepWiki for mulle-objc-debug |
| Requirement | Release Version | Description |
|---|---|---|
| mulle-objc-runtime | β© A fast, portable Objective-C runtime written 100% in C11 |
Use mulle-sde to add mulle-objc-debug to your project.
As long as your sources are using #include "include-private.h" and your headers use #include "include.h", there will nothing more to do:
mulle-sde add github:mulle-objc/mulle-objc-debugTo only add the sources of mulle-objc-debug with all the sources of its dependencies replace "github:" with clib::
One common denominator is that you will likely have to add
#include <mulle-objc-debug/mulle-objc-debug.h> to your source files.
clib install --out src/mulle-objc mulle-objc/mulle-objc-debugAdd -isystem src/mulle-objc to your CFLAGS and compile all the
sources that were downloaded with your project. (In cmake add
include_directories( BEFORE SYSTEM src/mulle-objc) to your CMakeLists.txt
file).
git submodule add -f --name "mulle-objc-runtime" \
"https://github.com/mulle-objc/mulle-objc-runtime.git" \
"stash/mulle-objc-runtime"
git submodule add -f --name "mulle-objc-debug" \
"https://github.com/mulle-objc/mulle-objc-debug" \
"stash/mulle-objc-debug"
git submodule update --init --recursiveadd_subdirectory( stash/mulle-objc-debug)
add_subdirectory( stash/mulle-objc-runtime)
target_link_libraries( ${PROJECT_NAME} PUBLIC mulle-objc-debug)
target_link_libraries( ${PROJECT_NAME} PUBLIC mulle-objc-runtime)Use mulle-sde to build and install mulle-objc-debug and all dependencies:
mulle-sde install --prefix /usr/local \
https://github.com/mulle-objc/mulle-objc-debug/archive/latest.tar.gzInstall all requirements
| Requirements | Description |
|---|---|
| mulle-objc-runtime | β© A fast, portable Objective-C runtime written 100% in C11 |
Download the latest tar or zip archive and unpack it.
Install mulle-objc-debug into /usr/local with cmake:
PREFIX_DIR="/usr/local"
cmake -B build \
-DMULLE_SDK_PATH="${PREFIX_DIR}" \
-DCMAKE_INSTALL_PREFIX="${PREFIX_DIR}" \
-DCMAKE_PREFIX_PATH="${PREFIX_DIR}" \
-DCMAKE_BUILD_TYPE=Release &&
cmake --build build --config Release &&
cmake --install build --config ReleaseNat! for Mulle kybernetiK