diff options
author | van Hauser <vh@thc.org> | 2020-04-26 00:54:02 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-26 00:54:02 +0200 |
commit | 646aeb2b18f91c562fa8de656c87f3cb205ce99f (patch) | |
tree | 53e4fd6f365e9ef182930db9de348cbc637fe8da | |
parent | 2a60ceb6944a7ca273057ddf64dcf837bf7f9521 (diff) | |
download | afl++-646aeb2b18f91c562fa8de656c87f3cb205ce99f.tar.gz |
try unicorn build without -j
-rwxr-xr-x | unicorn_mode/build_unicorn_support.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unicorn_mode/build_unicorn_support.sh b/unicorn_mode/build_unicorn_support.sh index 1e5b3ef4..d84d8635 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -182,7 +182,8 @@ echo "[+] Configuration complete." echo "[*] Attempting to build unicornafl (fingers crossed!)..." $MAKECMD clean # make doesn't seem to work for unicorn -UNICORN_QEMU_FLAGS="--python=$PYTHONBIN" $MAKECMD -j$CORES || exit 1 +#UNICORN_QEMU_FLAGS="--python=$PYTHONBIN" $MAKECMD -j$CORES || exit 1 +UNICORN_QEMU_FLAGS="--python=$PYTHONBIN" $MAKECMD || exit 1 echo "[+] Build process successful!" |