babeltrace2-sys 0.3.1

Rust sys crate for babeltrace2
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

set -e

# address, leak, memory or thread
SAN="${SAN:=leak}"

# Run with example options: ./run-example-with-sanitizer fs /tmp/trace
RUSTFLAGS="-Z sanitizer=$SAN" cargo +nightly run --target x86_64-unknown-linux-gnu --example decode -- "$@"

exit 0