Delete introspection feature from libafl_libfuzzer (#2349)

* fix

* a

* delete it
This commit is contained in:
Dongjia "toka" Zhang 2024-06-28 23:02:32 +02:00 committed by GitHub
parent 602bce446f
commit 234ea049a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View File

@ -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 = []

View File

@ -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(","));