From 80957ec3256f4d2d55f1ddd69bf3e496b8101278 Mon Sep 17 00:00:00 2001 From: Kevin Phoenix Date: Tue, 17 Sep 2024 15:24:39 -0700 Subject: [PATCH] Use python3 in fuzzing/build.sh (#422) --- fuzzing/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzzing/build.sh b/fuzzing/build.sh index 9600e474..1d46da09 100755 --- a/fuzzing/build.sh +++ b/fuzzing/build.sh @@ -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