aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/zstd/ya.make
blob: 01c8d1cc1a6154a32e0b483c97d505ad90de6571 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Generated by devtools/yamaker from nixpkgs 22.11.

LIBRARY()

LICENSE(
    "(BSD-2-Clause OR GPL-2.0-only)" AND
    "(BSD-3-Clause OR GPL-2.0-only)" AND
    BSD-2-Clause AND
    BSD-3-Clause AND
    MIT
)

LICENSE_TEXTS(.yandex_meta/licenses.list.txt)

VERSION(1.5.6)

ORIGINAL_SOURCE(https://github.com/facebook/zstd/archive/v1.5.6.tar.gz)

PEERDIR(
    contrib/libs/xxhash
)

NO_COMPILER_WARNINGS()

NO_RUNTIME()

CFLAGS(
    -DZSTD_LEGACY_SUPPORT=1
    -DZSTD_MULTITHREAD
)

IF (ARCH_X86_64 AND NOT MSVC)
    CFLAGS(
        -DDYNAMIC_BMI2
    )
    SRCS(
        lib/decompress/huf_decompress_amd64.S
    )
ENDIF()

SRCS(
    lib/common/debug.c
    lib/common/entropy_common.c
    lib/common/error_private.c
    lib/common/fse_decompress.c
    lib/common/pool.c
    lib/common/threading.c
    lib/common/zstd_common.c
    lib/compress/fse_compress.c
    lib/compress/hist.c
    lib/compress/huf_compress.c
    lib/compress/zstd_compress.c
    lib/compress/zstd_compress_literals.c
    lib/compress/zstd_compress_sequences.c
    lib/compress/zstd_compress_superblock.c
    lib/compress/zstd_double_fast.c
    lib/compress/zstd_fast.c
    lib/compress/zstd_lazy.c
    lib/compress/zstd_ldm.c
    lib/compress/zstd_opt.c
    lib/compress/zstdmt_compress.c
    lib/decompress/huf_decompress.c
    lib/decompress/zstd_ddict.c
    lib/decompress/zstd_decompress.c
    lib/decompress/zstd_decompress_block.c
    lib/dictBuilder/cover.c
    lib/dictBuilder/divsufsort.c
    lib/dictBuilder/fastcover.c
    lib/dictBuilder/zdict.c
    lib/legacy/zstd_v01.c
    lib/legacy/zstd_v02.c
    lib/legacy/zstd_v03.c
    lib/legacy/zstd_v04.c
    lib/legacy/zstd_v05.c
    lib/legacy/zstd_v06.c
    lib/legacy/zstd_v07.c
)

END()

RECURSE(
    programs/zstd
)