Skip to content

Commit c48d8e0

Browse files
committed
Don't compile giflib in parallel
It fails with too many cores
1 parent 2f3fb50 commit c48d8e0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build-ffmpeg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,10 @@ if build "giflib" "5.2.1"; then
344344
download "https://sourceforge.net/p/giflib/bugs/_discuss/thread/4e811ad29b/c323/attachment/Makefile.patch"
345345
execute patch "${PACKAGES}/giflib-5.2.1/Makefile" ${PACKAGES}/Makefile.patch""
346346
fi
347-
execute make -j $MJOBS
347+
# Descript: compilation will fail with more than 8 jobs, so
348+
# force to not run in parallel
349+
#execute make -j $MJOBS
350+
execute make
348351
execute make PREFIX="${WORKSPACE}" install
349352
build_done "giflib" "5.2.1"
350353
fi

0 commit comments

Comments
 (0)