rtsan-standalone-sys 0.1.0

Unsafe Rust bindings for RTSan standalone library
docs.rs failed to build rtsan-standalone-sys-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

rtsan-sys

Unsafe Rust bindings for the RTSan standalone library.

Supported Targets

Currently this crate only works on Linux and macOS.

Generating Bindings

The Rust bindings are generated from the original C++ header file for the RTSan standalone library. The header file is available at the following link:
RTSan Standalone Header

To generate the bindings, use the following command:

bindgen rtsan_standalone.h -o rtsan_standalone.rs

Installing Bindgen

You can install bindgen via cargo using the following command:

cargo install bindgen-cli