Skip to content

Commit a4bfa81

Browse files
Merge branch 'master' into master
2 parents f11dbda + b43eda9 commit a4bfa81

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/ffmpeg/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,19 +105,19 @@ make -j$(nproc) install
105105

106106
cd $SRC/libvpx
107107
if [[ "$SANITIZER" == "memory" ]] || [[ "$FUZZING_ENGINE" == "centipede" ]]; then
108-
TARGET="--target=generic-gnu"
108+
LIBVPX_BUILD_ARGS="--disable-x86-asm"
109109
elif [[ "$ARCHITECTURE" == i386 ]]; then
110-
TARGET="--target=x86-linux-gcc"
110+
LIBVPX_BUILD_ARGS="--target=x86-linux-gcc"
111111
else
112-
TARGET=""
112+
LIBVPX_BUILD_ARGS=""
113113
fi
114114

115115
LDFLAGS="$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

122122
make -j$(nproc) install
123123

0 commit comments

Comments
 (0)