mirror of https://github.com/google/oss-fuzz.git
[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:
parent
3f97744eab
commit
318f52f824
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue