Skip to content

Commit

Permalink
add AFL_LLVM_CMPGLOG
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Nov 10, 2023
1 parent 102f6cd commit 77b2c27
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bin/cargo-ziggy/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ impl Build {
"--target-dir=target/afl",
])
.env("AFL_QUIET", "1")
.env("AFL_LLVM_CMPGLOG", "1") // for afl.rs feature "plugins"
.env("RUSTFLAGS", env::var("RUSTFLAGS").unwrap_or_default())
.spawn()?
.wait()
Expand Down

2 comments on commit 77b2c27

@pagabuc
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this commit contains a typo, shouldn't it be CMPLOG instead of CMPGLOG?

@vanhauser-thc
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is but actually not important because it is not used. We chose a different route, it would have been too complicated and unusual for rust users

Please sign in to comment.