Skip to content

Commit

Permalink
Use python3 in fuzzing/build.sh (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin authored Sep 17, 2024
1 parent 76f3e28 commit 80957ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzzing/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

# Since pyvex requires a specific developer build of archinfo, install it from source
cd "$SRC"/archinfo
python3.9 -m pip install .
python3 -m pip install .

cd "$SRC"/pyvex
python3.9 -m pip install .[testing]
python3 -m pip install .[testing]

# Generate a simple binary for the corpus
echo -ne "start:\n\txor %edi, %edi\nmov \$60, %eax\nsyscall" > /tmp/corpus.s
Expand Down

0 comments on commit 80957ec

Please sign in to comment.