
* starting to build fuzzbench harness * fuzzbench updated * fuzzbench example readme * removed dummy files * Intial de-luxe dockerfile added * added to dockerignore * more fuzzbench * dockerfile * final dockerfile fun * fuzzing fixes, switched rand, build fixes * fmt * added dummy fuzzone * silence wrapper output * clippy * logfile fixes * adopt changes to libafl-cc * various fixes
10 lines
230 B
Rust
10 lines
230 B
Rust
// build.rs
|
|
|
|
fn main() {
|
|
cc::Build::new()
|
|
.file("src/libafl_wrapper.c")
|
|
.compile("libafl_sys.a");
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
println!("cargo:rerun-if-changed=src/libafl_wrapper.c");
|
|
}
|