From 178eaf31cff4fdab78d4b0b2c8e010c9cb04955f Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Tue, 22 Jun 2021 08:40:24 +0200 Subject: [PATCH] make.sh: fix toolchain compression the compression parameters was not accepted by zstd. Signed-off-by: Arne Fitzenreiter --- make.sh | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/make.sh b/make.sh index 837a071237..2d89cf998a 100755 --- a/make.sh +++ b/make.sh @@ -38,15 +38,10 @@ GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)" # Git Branch GIT_TAG="$(git tag | tail -1)" # Git Tag GIT_LASTCOMMIT="$(git rev-parse --verify HEAD)" # Last commit -TOOLCHAINVER=20210202 +TOOLCHAINVER=20210622 -ZSTD_OPT=( - # Compress in parallel using all processor cores - -T0 - - # Compress as best as we can - --ultra -22 -) +# use multicore and max compression +ZSTD_OPT="-T0 --ultra -22" ############################################################################### # -- 2.39.5