Skip to content

Commit

Permalink
Delete introspection feature from libafl_libfuzzer (#2349)
Browse files Browse the repository at this point in the history
* fix

* a

* delete it
  • Loading branch information
tokatoka authored Jun 28, 2024
1 parent 602bce4 commit 234ea04
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions libafl_libfuzzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ document-features = ["dep:document-features"]
## Enables the derive macros for the arbitrary dependency, transparently forwarded from libfuzzer-sys
arbitrary-derive = ["libfuzzer-sys/arbitrary-derive"]

## Enables fuzzer introspection with LibAFL's `introspection` feature
introspection = []

## Enables forking in the fuzzer runtime for restarting managers for Unix systems (on by default)
fork = []

Expand Down
3 changes: 0 additions & 3 deletions libafl_libfuzzer/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ fn main() {
if cfg!(any(feature = "fork")) {
features.push("fork");
}
if cfg!(any(feature = "introspection")) {
features.push("libafl/introspection");
}

if !features.is_empty() {
command.arg("--features").arg(features.join(","));
Expand Down

0 comments on commit 234ea04

Please sign in to comment.