You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [`libdd-profiling-heap-gotter`](../libdd-profiling-heap-gotter) which builds a `SymbolOverrides` registry on top of the primitives exported by this crate.
34
36
35
-
## Platform support
36
-
37
-
-**64-bit Linux (glibc)**: Full support.
38
-
-**64-bit Linux (musl)**: Works for dynamically linked symbols. Statically linked symbols have no GOT entries and cannot be patched.
39
-
-**Other platforms**: The crate compiles but exports nothing — all types and functions are `cfg`-gated to `target_os = "linux"`.
37
+
## Support
38
+
This library can be used on ARM64 and AMD64 Linux in processes using glibc or musl runtimes.
39
+
Only symbols that have been dynamically linked can be intercept.
40
+
For instance, if you want to intercept the `malloc` of your C runtime,
41
+
you _cannot_ do so if the application has been statically linked against musl.
0 commit comments