Magisk module packaging a pre-compiled strace v6.19 binary for Android. Supports ARM64, ARM, x86_64, and x86 architectures. Built with GCC, LTO, statically linked, stripped.
The module installs strace to /system/bin/ via Magisk's systemless overlay, automatically selecting the correct binary for your device architecture at install time. Supports auto-update through Magisk's built-in update mechanism.
- Download the latest zip from the releases page
- Open Magisk → Modules → Install from storage → select the zip → Reboot
Requires make, adb, and a rooted device connected via USB.
git clone https://github.com/evdenis/strace
cd strace
make installRequires Docker.
# Build strace for a single architecture (default: arm64)
make build-strace ARCH=arm64
# Build for all architectures
make build-strace-all
# Run binary verification tests
make test-strace-all
# Package into installable zip
make zipSupported ARCH values: arm64, arm, x86_64, x86.