Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tokatoka committed Sep 21, 2023
1 parent 6b696b3 commit 3c25602
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fuzzers/libafl_fuzzbench_composition/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ def build_libafl():
exit(1)

command = ["cargo", "build", "--release", "--package", "composition", "--features"]
command += ["no_link_main"]
command += feature_flags
feature_flags = ["no_link_main"] + feature_flags
feature_flags = ",".join(feature_flags)
command += [feature_flags]

subprocess.check_call(command, cwd='/libafl_fuzzbench')

Expand Down

0 comments on commit 3c25602

Please sign in to comment.