diff options
author | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2019-01-03 22:30:03 -0200 |
---|---|---|
committer | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2019-01-03 22:35:20 -0200 |
commit | e64391f47bf95ab4cdb65683623979ee6790836e (patch) | |
tree | c85c2c9a80d04e338cf39d0fed3fdba2d0291b29 /core/SCsub | |
parent | b1e3215f3a316cfaf518747f7dafba4cc0d8d291 (diff) |
Update zstd to 1.3.8
Diffstat (limited to 'core/SCsub')
-rw-r--r-- | core/SCsub | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/SCsub b/core/SCsub index fe379d6936..00d0bcac24 100644 --- a/core/SCsub +++ b/core/SCsub @@ -103,6 +103,7 @@ env_thirdparty.add_source_files(env.core_sources, thirdparty_minizip_sources) if env['builtin_zstd']: thirdparty_zstd_dir = "#thirdparty/zstd/" thirdparty_zstd_sources = [ + "common/debug.c", "common/entropy_common.c", "common/error_private.c", "common/fse_decompress.c", @@ -111,15 +112,18 @@ if env['builtin_zstd']: "common/xxhash.c", "common/zstd_common.c", "compress/fse_compress.c", + "compress/hist.c", "compress/huf_compress.c", "compress/zstd_compress.c", "compress/zstd_double_fast.c", "compress/zstd_fast.c", "compress/zstd_lazy.c", "compress/zstd_ldm.c", - "compress/zstdmt_compress.c", "compress/zstd_opt.c", + "compress/zstdmt_compress.c", "decompress/huf_decompress.c", + "decompress/zstd_ddict.c", + "decompress/zstd_decompress_block.c", "decompress/zstd_decompress.c", ] thirdparty_zstd_sources = [thirdparty_zstd_dir + file for file in thirdparty_zstd_sources] |