
* Add libfuzzer example for window with ASAN * Fix formatting * Add link * Fix cpp format * Skip windows fuzzers * Fix format * Fix testing fuzzer * Fix taks name Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com> Co-authored-by: Andrea Fioraldi <andreafioraldi@gmail.com> Co-authored-by: Dominik Maier <domenukk@gmail.com>
27 lines
562 B
TOML
27 lines
562 B
TOML
[package]
|
|
name = "libfuzzer_windows_asan"
|
|
version = "0.8.2"
|
|
authors = ["Max Ammann <max@maxammann.org>"]
|
|
edition = "2021"
|
|
categories = ["development-tools::testing"]
|
|
|
|
[features]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[dependencies]
|
|
libafl = { path = "../../libafl/" }
|
|
libafl_targets = { path = "../../libafl_targets/", features = ["libfuzzer", "sancov_pcguard_edges"] }
|
|
libafl_cc = { path = "../../libafl_cc/" }
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0" }
|
|
|
|
[lib]
|
|
name = "libfuzzer_windows_asan"
|
|
crate-type = ["staticlib"]
|