Commit 7cee363b authored by Thomas Huth's avatar Thomas Huth
Browse files

scripts/oss-fuzz: Limit target list to i386-softmmu



The build.sh script only copies qemu-fuzz-i386 to the destination folder,
so we can speed up the compilation step quite a bit by not compiling the
other targets here.

Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
parent af3d6905
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ mkdir -p "$DEST_DIR/lib/" # Copy the shared libraries here

# Build once to get the list of dynamic lib paths, and copy them over
../configure --disable-werror --cc="$CC" --cxx="$CXX" \
    --extra-cflags="$EXTRA_CFLAGS"
    --extra-cflags="$EXTRA_CFLAGS" --target-list="i386-softmmu"

if ! make CONFIG_FUZZ=y CFLAGS="$LIB_FUZZING_ENGINE" "-j$(nproc)" \
    i386-softmmu/fuzz; then