[libvpx] Disable encoders in libvpx (#2126)

Disable encoders while building libvpx
Current tools_common.c requires y4minput.c when encoders are enabled.
Instead of adding y4minput while linking fuzzer binary, encoders are
disabled during libvpx configure.
This resolves undefined reference to functions in y4minput.c
This commit is contained in:
Harish Mahendrakar 2019-02-01 11:22:56 -08:00 committed by Oliver Chang
parent 3f97744eab
commit 318f52f824
1 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,9 @@ LDFLAGS="$CXXFLAGS" LD=$CXX $SRC/libvpx/configure \
--size-limit=12288x12288 \
--extra-cflags="${extra_c_flags}" \
--disable-webm-io \
--enable-debug
--enable-debug \
--disable-vp8-encoder \
--disable-vp9-encoder
make -j$(nproc) all
popd