From: Arne Fitzenreiter Date: Tue, 22 Jun 2021 06:40:24 +0000 (+0200) Subject: make.sh: fix toolchain compression X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=178eaf31cff4fdab78d4b0b2c8e010c9cb04955f;p=people%2Fstevee%2Fipfire-2.x.git make.sh: fix toolchain compression the compression parameters was not accepted by zstd. Signed-off-by: Arne Fitzenreiter --- 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" ############################################################################### #