File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -105,19 +105,19 @@ make -j$(nproc) install
105105
106106cd $SRC /libvpx
107107if [[ " $SANITIZER " == " memory" ]] || [[ " $FUZZING_ENGINE " == " centipede" ]]; then
108- TARGET =" --target=generic-gnu "
108+ LIBVPX_BUILD_ARGS =" --disable-x86-asm "
109109elif [[ " $ARCHITECTURE " == i386 ]]; then
110- TARGET =" --target=x86-linux-gcc"
110+ LIBVPX_BUILD_ARGS =" --target=x86-linux-gcc"
111111else
112- TARGET =" "
112+ LIBVPX_BUILD_ARGS =" "
113113fi
114114
115115LDFLAGS=" $CXXFLAGS " ./configure --prefix=" $FFMPEG_DEPS_PATH " \
116116 --disable-docs --disable-examples --disable-tools --disable-unit-tests \
117117 --enable-vp9-highbitdepth \
118118 --size-limit=12288x12288 \
119119 --extra-cflags=" -DVPX_MAX_ALLOCABLE_MEMORY=1073741824" \
120- $TARGET
120+ $LIBVPX_BUILD_ARGS
121121
122122make -j$( nproc) install
123123
You can’t perform that action at this time.
0 commit comments