Lines Matching refs:RUSTFLAGS
41 export RUSTFLAGS="-C link-arg=-L/usr/local/lib -C link-arg=-lc++"
60 RUSTFLAGS="$RUSTFLAGS --cfg fuzzing" # used to change code logic
61 RUSTFLAGS="$RUSTFLAGS -Cdebug-assertions" # to get debug_assert in rust
62 RUSTFLAGS="$RUSTFLAGS -Zsanitizer=address" # address sanitizer (ASAN)
64 RUSTFLAGS="$RUSTFLAGS -Cdebuginfo=1"
65 RUSTFLAGS="$RUSTFLAGS -Cforce-frame-pointers"
67 RUSTFLAGS="$RUSTFLAGS -Cpasses=sancov"
68 RUSTFLAGS="$RUSTFLAGS -Cllvm-args=-sanitizer-coverage-level=4"
69 RUSTFLAGS="$RUSTFLAGS -Cllvm-args=-sanitizer-coverage-trace-compares"
70 RUSTFLAGS="$RUSTFLAGS -Cllvm-args=-sanitizer-coverage-inline-8bit-counters"
71 RUSTFLAGS="$RUSTFLAGS -Cllvm-args=-sanitizer-coverage-trace-geps"
72 RUSTFLAGS="$RUSTFLAGS -Cllvm-args=-sanitizer-coverage-prune-blocks=0"
73 RUSTFLAGS="$RUSTFLAGS -Cllvm-args=-sanitizer-coverage-pc-table"
74 RUSTFLAGS="$RUSTFLAGS -Clink-dead-code"
75 RUSTFLAGS="$RUSTFLAGS -Cllvm-args=-sanitizer-coverage-stack-depth"
76 RUSTFLAGS="$RUSTFLAGS -Ccodegen-units=1"
78 export RUSTFLAGS