Update libzstd

This commit is contained in:
Henrik Rydgård
2025-08-24 14:46:53 +02:00
parent e83303ea54
commit 9028866b7f
7 changed files with 11 additions and 2 deletions

View File

@@ -67,6 +67,7 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\..\ext\zstd\lib\compress\zstd_preSplit.h" />
<ClInclude Include="pch.h" />
<ClInclude Include="targetver.h" />
<ClInclude Include="..\..\ext\zstd\lib\common\error_private.h" />
@@ -114,6 +115,7 @@
<ClCompile Include="..\..\ext\zstd\lib\compress\zstd_ldm.c" />
<ClCompile Include="..\..\ext\zstd\lib\compress\zstd_opt.c" />
<ClCompile Include="..\..\ext\zstd\lib\compress\zstdmt_compress.c" />
<ClCompile Include="..\..\ext\zstd\lib\compress\zstd_preSplit.c" />
<ClCompile Include="..\..\ext\zstd\lib\decompress\huf_decompress.c" />
<ClCompile Include="..\..\ext\zstd\lib\decompress\zstd_ddict.c" />
<ClCompile Include="..\..\ext\zstd\lib\decompress\zstd_decompress.c" />

View File

@@ -31,6 +31,7 @@
<ClCompile Include="..\..\ext\zstd\lib\dictBuilder\divsufsort.c" />
<ClCompile Include="..\..\ext\zstd\lib\dictBuilder\fastcover.c" />
<ClCompile Include="..\..\ext\zstd\lib\dictBuilder\zdict.c" />
<ClCompile Include="..\..\ext\zstd\lib\compress\zstd_preSplit.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="pch.h" />
@@ -57,5 +58,6 @@
<ClInclude Include="..\..\ext\zstd\lib\compress\zstd_opt.h" />
<ClInclude Include="..\..\ext\zstd\lib\compress\zstdmt_compress.h" />
<ClInclude Include="..\..\ext\zstd\lib\decompress\zstd_ddict.h" />
<ClInclude Include="..\..\ext\zstd\lib\compress\zstd_preSplit.h" />
</ItemGroup>
</Project>

View File

@@ -858,6 +858,7 @@ LIBZSTD_FILES := \
$(SRC)/ext/zstd/lib/compress/zstd_lazy.c \
$(SRC)/ext/zstd/lib/compress/zstd_ldm.c \
$(SRC)/ext/zstd/lib/compress/zstd_opt.c \
$(SRC)/ext/zstd/lib/compress/zstd_preSplit.c \
$(SRC)/ext/zstd/lib/compress/zstdmt_compress.c \
$(SRC)/ext/zstd/lib/decompress/huf_decompress.c \
$(SRC)/ext/zstd/lib/decompress/zstd_ddict.c \

View File

@@ -48,6 +48,7 @@
<ClCompile Include="zstd\lib\compress\zstd_opt.c" />
<ClCompile Include="zstd\lib\compress\zstd_ldm.c" />
<ClCompile Include="zstd\lib\compress\zstdmt_compress.c" />
<ClCompile Include="zstd\lib\compress\zstd_preSplit.c" />
<ClCompile Include="zstd\lib\decompress\huf_decompress.c" />
<ClCompile Include="zstd\lib\decompress\zstd_decompress.c" />
<ClCompile Include="zstd\lib\decompress\zstd_decompress_block.c" />
@@ -69,6 +70,7 @@
<ClInclude Include="zstd\lib\common\threading.h" />
<ClInclude Include="zstd\lib\common\bitstream.h" />
<ClInclude Include="zstd\lib\common\error_private.h" />
<ClInclude Include="zstd\lib\compress\zstd_preSplit.h" />
<ClInclude Include="zstd\lib\zstd_errors.h" />
<ClInclude Include="zstd\lib\common\mem.h" />
<ClInclude Include="zstd\lib\common\fse.h" />

View File

@@ -24,6 +24,7 @@ set(ALL_SOURCE_FILES
${SRC_DIR}/compress/zstd_lazy.c
${SRC_DIR}/compress/zstd_ldm.c
${SRC_DIR}/compress/zstd_opt.c
${SRC_DIR}/compress/zstd_preSplit.c
${SRC_DIR}/compress/zstdmt_compress.c
${SRC_DIR}/decompress/huf_decompress.c
${SRC_DIR}/decompress/zstd_ddict.c

View File

@@ -999,7 +999,7 @@ SOURCES_CXX += \
$(COMMONDIR)/GPU/D3D11/D3D11Loader.cpp \
$(COMMONDIR)/GPU/D3D11/thin3d_d3d11.cpp
INCFLAGS += -I$(CORE_DIR)/dx9sdk/Include -I$(CORE_DIR)/dx9sdk/Include/DX11
INCFLAGS += -I$(CORE_DIR)/dx9sdk/Include/DX11
endif
@@ -1029,6 +1029,7 @@ SOURCES_C += $(ZSTDDIR)/common/debug.c \
$(ZSTDDIR)/compress/zstd_lazy.c \
$(ZSTDDIR)/compress/zstd_ldm.c \
$(ZSTDDIR)/compress/zstd_opt.c \
$(ZSTDDIR)/compress/zstd_preSplit.c \
$(ZSTDDIR)/compress/zstdmt_compress.c \
$(ZSTDDIR)/decompress/huf_decompress.c \
$(ZSTDDIR)/decompress/zstd_ddict.c \