commit 27d9c19
hovercats
·
2024-06-22 06:50:30 +0000 UTC
parent ebef78a
zstd: 1.5.6
4 files changed,
+4,
-29
+2,
-1
1@@ -39,6 +39,7 @@ lib('libzstd.a', [[lib/(
2 )
3 decompress/(
4 huf_decompress.c
5+ huf_decompress_amd64.S
6 zstd_ddict.c
7 zstd_decompress.c
8 zstd_decompress_block.c
9@@ -46,7 +47,7 @@ lib('libzstd.a', [[lib/(
10 )]])
11
12 exe('zstd', [[
13- programs/(zstdcli.c util.c timefn.c fileio.c)
14+ programs/(zstdcli.c util.c timefn.c fileio.c fileio_asyncio.c)
15 libzstd.a
16 ]])
17 file('bin/zstd', '755', '$outdir/zstd')
1@@ -1,26 +0,0 @@
2-From 0f2837d010dce1f0a384c3ba6f54a86f39c607d5 Mon Sep 17 00:00:00 2001
3-From: Dan Nelson <dnelson_1901@yahoo.com>
4-Date: Sat, 15 May 2021 10:20:37 -0500
5-Subject: [PATCH] ZSTD_VecMask_next: fix incorrect variable name in fallback
6- code path
7-
8----
9- lib/compress/zstd_lazy.c | 2 +-
10- 1 file changed, 1 insertion(+), 1 deletion(-)
11-
12-diff --git a/lib/compress/zstd_lazy.c b/lib/compress/zstd_lazy.c
13-index 3d523e84..9e13f37c 100644
14---- a/lib/compress/zstd_lazy.c
15-+++ b/lib/compress/zstd_lazy.c
16-@@ -1081,7 +1081,7 @@ static U32 ZSTD_VecMask_next(ZSTD_VecMask val) {
17- 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8,
18- 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9
19- };
20-- return multiplyDeBruijnBitPosition[((U32)((v & -(int)v) * 0x077CB531U)) >> 27];
21-+ return multiplyDeBruijnBitPosition[((U32)((val & -(int)val) * 0x077CB531U)) >> 27];
22- # endif
23- }
24-
25---
26-2.31.1
27-
+1,
-1
1@@ -1 +1 @@
2-Subproject commit a488ba114ec17ea1054b9057c26a046fc122b3b6
3+Subproject commit 794ea1b0afca0f020f4e57b6732332231fb23c70
+1,
-1
1@@ -1 +1 @@
2-1.5.0 r0
3+1.5.6 r0