From 93368a4065ea6dedd608f44e07f220f77bbd09cf Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Mon, 7 Apr 2025 20:12:04 +0200 Subject: [PATCH] build: we don't link against bzip2 anymore, so no need to build it --- .docker/install-static-libs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/install-static-libs.sh b/.docker/install-static-libs.sh index a0ef5227..f5828d09 100644 --- a/.docker/install-static-libs.sh +++ b/.docker/install-static-libs.sh @@ -35,7 +35,7 @@ if [[ "$PKGS" == ":ubuntu" ]]; then PKGS="file,bzip2,libarchive,flac,libunwind,benchmark,openssl,cpptrace" COMPILERS="clang gcc" elif [[ "$PKGS" == ":alpine" ]]; then - PKGS="benchmark,brotli,bzip2,cpptrace,double-conversion,flac,fmt,fuse,glog,libarchive,lz4,openssl,xxhash,zstd" + PKGS="benchmark,brotli,cpptrace,double-conversion,flac,fmt,fuse,glog,libarchive,lz4,openssl,xxhash,zstd" export CLANG_OPTIMIZE="-Os" export GCC_OPTIMIZE="-O2" # gcc -Os is painfully slow export COMMON_CFLAGS="-ffunction-sections -fdata-sections -fmerge-all-constants"