Skip to content

Commit cf2b7f3

Browse files
committed
aom: new musl-only patch to set min thread stack size
The aom dependency implemented a minimum stack size for debugging purposes in v3.8.0. This patch enables it for production use, reducing the minimum from 1MB to 256 KB. The previous patch was temporarily removed in de30aa6.
1 parent edd1fc4 commit cf2b7f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/lin.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ $CURL https://storage.googleapis.com/aom-releases/libaom-${VERSION_AOM}.tar.gz |
252252
cd ${DEPS}/aom
253253
if [ "${PLATFORM%-*}" == "linuxmusl" ]; then
254254
# https://bugs.chromium.org/p/aomedia/issues/detail?id=2754
255-
: # $CURL https://git.alpinelinux.org/aports/plain/main/aom/fix-stack-size-e53da0b.patch | patch -p1 # TODO: requires updated patch
255+
$CURL https://gist.github.com/lovell/3e70b51079af2c9b78e5a0e6f6ad0e59/raw/92864bf57345f57cf32307dd3b399a6bd430b78e/aom-ensure-thread-stack-size-is-at-least-256-KB.patch | patch -p1
256256
fi
257257
mkdir aom_build
258258
cd aom_build

0 commit comments

Comments
 (0)