From 17f766111aabae8adc3454dbf14ff74b00aee3ee Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Wed, 2 Apr 2025 18:03:34 +0200 Subject: [PATCH] build: don't build thin-lto stuff at the moment --- .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 d46d2d99..c7b55ead 100644 --- a/.docker/install-static-libs.sh +++ b/.docker/install-static-libs.sh @@ -37,7 +37,7 @@ elif [[ "$PKGS" == ":alpine" ]]; then PKGS="benchmark,brotli,bzip2,cpptrace,double-conversion,flac,fmt,glog,libarchive,lz4,openssl,xxhash,zstd" export COMMON_CFLAGS="-Os -ffunction-sections -fdata-sections -fmerge-all-constants" export COMMON_CXXFLAGS="$COMMON_CFLAGS" - COMPILERS="clang gcc clang-lto gcc-lto clang-lto-thin" + COMPILERS="clang gcc clang-lto gcc-lto" elif [[ "$PKGS" == ":none" ]]; then echo "No libraries to build" exit 0