Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fuzz: make fuzzers work with nightly
Recent Rust compilers have bugs that appear when fuzzing optimized binaries: rust-lang/rust#53945 This patch works around the issue by adding the "-C codegen-units=1 -C incremental=fuzz-incremental" arguments to `RUSTFLAGS`. Why this works I don't actually know. This workaround isn't mentioned in the linked issue, and afaik the "incremental" flag is simply changing the directory of the incremental cache, not turning it on or off. Signed-off-by: Brian Anderson <[email protected]>
- Loading branch information