zstd-ruby 1.5.2.0 → 1.5.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/README.md +55 -2
  4. data/Rakefile +8 -2
  5. data/ext/zstdruby/{zstdruby.h → common.h} +2 -0
  6. data/ext/zstdruby/main.c +14 -0
  7. data/ext/zstdruby/streaming_compress.c +185 -0
  8. data/ext/zstdruby/streaming_compress.h +5 -0
  9. data/ext/zstdruby/streaming_decompress.c +125 -0
  10. data/ext/zstdruby/zstdruby.c +4 -6
  11. data/lib/zstd-ruby/version.rb +1 -1
  12. data/zstd-ruby.gemspec +1 -1
  13. metadata +7 -36
  14. data/.github/dependabot.yml +0 -8
  15. data/.github/workflows/ruby.yml +0 -35
  16. data/ext/zstdruby/libzstd/.gitignore +0 -3
  17. data/ext/zstdruby/libzstd/BUCK +0 -232
  18. data/ext/zstdruby/libzstd/Makefile +0 -357
  19. data/ext/zstdruby/libzstd/README.md +0 -217
  20. data/ext/zstdruby/libzstd/deprecated/zbuff.h +0 -214
  21. data/ext/zstdruby/libzstd/deprecated/zbuff_common.c +0 -26
  22. data/ext/zstdruby/libzstd/deprecated/zbuff_compress.c +0 -167
  23. data/ext/zstdruby/libzstd/deprecated/zbuff_decompress.c +0 -75
  24. data/ext/zstdruby/libzstd/dll/example/Makefile +0 -48
  25. data/ext/zstdruby/libzstd/dll/example/README.md +0 -63
  26. data/ext/zstdruby/libzstd/dll/example/build_package.bat +0 -20
  27. data/ext/zstdruby/libzstd/dll/example/fullbench-dll.sln +0 -25
  28. data/ext/zstdruby/libzstd/dll/example/fullbench-dll.vcxproj +0 -181
  29. data/ext/zstdruby/libzstd/legacy/zstd_legacy.h +0 -415
  30. data/ext/zstdruby/libzstd/legacy/zstd_v01.c +0 -2158
  31. data/ext/zstdruby/libzstd/legacy/zstd_v01.h +0 -94
  32. data/ext/zstdruby/libzstd/legacy/zstd_v02.c +0 -3518
  33. data/ext/zstdruby/libzstd/legacy/zstd_v02.h +0 -93
  34. data/ext/zstdruby/libzstd/legacy/zstd_v03.c +0 -3160
  35. data/ext/zstdruby/libzstd/legacy/zstd_v03.h +0 -93
  36. data/ext/zstdruby/libzstd/legacy/zstd_v04.c +0 -3647
  37. data/ext/zstdruby/libzstd/legacy/zstd_v04.h +0 -142
  38. data/ext/zstdruby/libzstd/legacy/zstd_v05.c +0 -4050
  39. data/ext/zstdruby/libzstd/legacy/zstd_v05.h +0 -162
  40. data/ext/zstdruby/libzstd/legacy/zstd_v06.c +0 -4154
  41. data/ext/zstdruby/libzstd/legacy/zstd_v06.h +0 -172
  42. data/ext/zstdruby/libzstd/legacy/zstd_v07.c +0 -4541
  43. data/ext/zstdruby/libzstd/legacy/zstd_v07.h +0 -187
  44. data/ext/zstdruby/libzstd/libzstd.mk +0 -203
  45. data/ext/zstdruby/libzstd/libzstd.pc.in +0 -16
  46. data/ext/zstdruby/libzstd/module.modulemap +0 -25
@@ -1,187 +0,0 @@
1
- /*
2
- * Copyright (c) Yann Collet, Facebook, Inc.
3
- * All rights reserved.
4
- *
5
- * This source code is licensed under both the BSD-style license (found in the
6
- * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7
- * in the COPYING file in the root directory of this source tree).
8
- * You may select, at your option, one of the above-listed licenses.
9
- */
10
-
11
- #ifndef ZSTDv07_H_235446
12
- #define ZSTDv07_H_235446
13
-
14
- #if defined (__cplusplus)
15
- extern "C" {
16
- #endif
17
-
18
- /*====== Dependency ======*/
19
- #include <stddef.h> /* size_t */
20
-
21
-
22
- /*====== Export for Windows ======*/
23
- /*!
24
- * ZSTDv07_DLL_EXPORT :
25
- * Enable exporting of functions when building a Windows DLL
26
- */
27
- #if defined(_WIN32) && defined(ZSTDv07_DLL_EXPORT) && (ZSTDv07_DLL_EXPORT==1)
28
- # define ZSTDLIBv07_API __declspec(dllexport)
29
- #else
30
- # define ZSTDLIBv07_API
31
- #endif
32
-
33
-
34
- /* *************************************
35
- * Simple API
36
- ***************************************/
37
- /*! ZSTDv07_getDecompressedSize() :
38
- * @return : decompressed size if known, 0 otherwise.
39
- note 1 : if `0`, follow up with ZSTDv07_getFrameParams() to know precise failure cause.
40
- note 2 : decompressed size could be wrong or intentionally modified !
41
- always ensure results fit within application's authorized limits */
42
- unsigned long long ZSTDv07_getDecompressedSize(const void* src, size_t srcSize);
43
-
44
- /*! ZSTDv07_decompress() :
45
- `compressedSize` : must be _exact_ size of compressed input, otherwise decompression will fail.
46
- `dstCapacity` must be equal or larger than originalSize.
47
- @return : the number of bytes decompressed into `dst` (<= `dstCapacity`),
48
- or an errorCode if it fails (which can be tested using ZSTDv07_isError()) */
49
- ZSTDLIBv07_API size_t ZSTDv07_decompress( void* dst, size_t dstCapacity,
50
- const void* src, size_t compressedSize);
51
-
52
- /**
53
- ZSTDv07_findFrameSizeInfoLegacy() : get the source length and decompressed bound of a ZSTD frame compliant with v0.7.x format
54
- srcSize : The size of the 'src' buffer, at least as large as the frame pointed to by 'src'
55
- cSize (output parameter) : the number of bytes that would be read to decompress this frame
56
- or an error code if it fails (which can be tested using ZSTDv01_isError())
57
- dBound (output parameter) : an upper-bound for the decompressed size of the data in the frame
58
- or ZSTD_CONTENTSIZE_ERROR if an error occurs
59
-
60
- note : assumes `cSize` and `dBound` are _not_ NULL.
61
- */
62
- void ZSTDv07_findFrameSizeInfoLegacy(const void *src, size_t srcSize,
63
- size_t* cSize, unsigned long long* dBound);
64
-
65
- /*====== Helper functions ======*/
66
- ZSTDLIBv07_API unsigned ZSTDv07_isError(size_t code); /*!< tells if a `size_t` function result is an error code */
67
- ZSTDLIBv07_API const char* ZSTDv07_getErrorName(size_t code); /*!< provides readable string from an error code */
68
-
69
-
70
- /*-*************************************
71
- * Explicit memory management
72
- ***************************************/
73
- /** Decompression context */
74
- typedef struct ZSTDv07_DCtx_s ZSTDv07_DCtx;
75
- ZSTDLIBv07_API ZSTDv07_DCtx* ZSTDv07_createDCtx(void);
76
- ZSTDLIBv07_API size_t ZSTDv07_freeDCtx(ZSTDv07_DCtx* dctx); /*!< @return : errorCode */
77
-
78
- /** ZSTDv07_decompressDCtx() :
79
- * Same as ZSTDv07_decompress(), requires an allocated ZSTDv07_DCtx (see ZSTDv07_createDCtx()) */
80
- ZSTDLIBv07_API size_t ZSTDv07_decompressDCtx(ZSTDv07_DCtx* ctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
81
-
82
-
83
- /*-************************
84
- * Simple dictionary API
85
- ***************************/
86
- /*! ZSTDv07_decompress_usingDict() :
87
- * Decompression using a pre-defined Dictionary content (see dictBuilder).
88
- * Dictionary must be identical to the one used during compression.
89
- * Note : This function load the dictionary, resulting in a significant startup time */
90
- ZSTDLIBv07_API size_t ZSTDv07_decompress_usingDict(ZSTDv07_DCtx* dctx,
91
- void* dst, size_t dstCapacity,
92
- const void* src, size_t srcSize,
93
- const void* dict,size_t dictSize);
94
-
95
-
96
- /*-**************************
97
- * Advanced Dictionary API
98
- ****************************/
99
- /*! ZSTDv07_createDDict() :
100
- * Create a digested dictionary, ready to start decompression operation without startup delay.
101
- * `dict` can be released after creation */
102
- typedef struct ZSTDv07_DDict_s ZSTDv07_DDict;
103
- ZSTDLIBv07_API ZSTDv07_DDict* ZSTDv07_createDDict(const void* dict, size_t dictSize);
104
- ZSTDLIBv07_API size_t ZSTDv07_freeDDict(ZSTDv07_DDict* ddict);
105
-
106
- /*! ZSTDv07_decompress_usingDDict() :
107
- * Decompression using a pre-digested Dictionary
108
- * Faster startup than ZSTDv07_decompress_usingDict(), recommended when same dictionary is used multiple times. */
109
- ZSTDLIBv07_API size_t ZSTDv07_decompress_usingDDict(ZSTDv07_DCtx* dctx,
110
- void* dst, size_t dstCapacity,
111
- const void* src, size_t srcSize,
112
- const ZSTDv07_DDict* ddict);
113
-
114
- typedef struct {
115
- unsigned long long frameContentSize;
116
- unsigned windowSize;
117
- unsigned dictID;
118
- unsigned checksumFlag;
119
- } ZSTDv07_frameParams;
120
-
121
- ZSTDLIBv07_API size_t ZSTDv07_getFrameParams(ZSTDv07_frameParams* fparamsPtr, const void* src, size_t srcSize); /**< doesn't consume input */
122
-
123
-
124
-
125
-
126
- /* *************************************
127
- * Streaming functions
128
- ***************************************/
129
- typedef struct ZBUFFv07_DCtx_s ZBUFFv07_DCtx;
130
- ZSTDLIBv07_API ZBUFFv07_DCtx* ZBUFFv07_createDCtx(void);
131
- ZSTDLIBv07_API size_t ZBUFFv07_freeDCtx(ZBUFFv07_DCtx* dctx);
132
-
133
- ZSTDLIBv07_API size_t ZBUFFv07_decompressInit(ZBUFFv07_DCtx* dctx);
134
- ZSTDLIBv07_API size_t ZBUFFv07_decompressInitDictionary(ZBUFFv07_DCtx* dctx, const void* dict, size_t dictSize);
135
-
136
- ZSTDLIBv07_API size_t ZBUFFv07_decompressContinue(ZBUFFv07_DCtx* dctx,
137
- void* dst, size_t* dstCapacityPtr,
138
- const void* src, size_t* srcSizePtr);
139
-
140
- /*-***************************************************************************
141
- * Streaming decompression howto
142
- *
143
- * A ZBUFFv07_DCtx object is required to track streaming operations.
144
- * Use ZBUFFv07_createDCtx() and ZBUFFv07_freeDCtx() to create/release resources.
145
- * Use ZBUFFv07_decompressInit() to start a new decompression operation,
146
- * or ZBUFFv07_decompressInitDictionary() if decompression requires a dictionary.
147
- * Note that ZBUFFv07_DCtx objects can be re-init multiple times.
148
- *
149
- * Use ZBUFFv07_decompressContinue() repetitively to consume your input.
150
- * *srcSizePtr and *dstCapacityPtr can be any size.
151
- * The function will report how many bytes were read or written by modifying *srcSizePtr and *dstCapacityPtr.
152
- * Note that it may not consume the entire input, in which case it's up to the caller to present remaining input again.
153
- * The content of `dst` will be overwritten (up to *dstCapacityPtr) at each function call, so save its content if it matters, or change `dst`.
154
- * @return : a hint to preferred nb of bytes to use as input for next function call (it's only a hint, to help latency),
155
- * or 0 when a frame is completely decoded,
156
- * or an error code, which can be tested using ZBUFFv07_isError().
157
- *
158
- * Hint : recommended buffer sizes (not compulsory) : ZBUFFv07_recommendedDInSize() and ZBUFFv07_recommendedDOutSize()
159
- * output : ZBUFFv07_recommendedDOutSize== 128 KB block size is the internal unit, it ensures it's always possible to write a full block when decoded.
160
- * input : ZBUFFv07_recommendedDInSize == 128KB + 3;
161
- * just follow indications from ZBUFFv07_decompressContinue() to minimize latency. It should always be <= 128 KB + 3 .
162
- * *******************************************************************************/
163
-
164
-
165
- /* *************************************
166
- * Tool functions
167
- ***************************************/
168
- ZSTDLIBv07_API unsigned ZBUFFv07_isError(size_t errorCode);
169
- ZSTDLIBv07_API const char* ZBUFFv07_getErrorName(size_t errorCode);
170
-
171
- /** Functions below provide recommended buffer sizes for Compression or Decompression operations.
172
- * These sizes are just hints, they tend to offer better latency */
173
- ZSTDLIBv07_API size_t ZBUFFv07_recommendedDInSize(void);
174
- ZSTDLIBv07_API size_t ZBUFFv07_recommendedDOutSize(void);
175
-
176
-
177
- /*-*************************************
178
- * Constants
179
- ***************************************/
180
- #define ZSTDv07_MAGICNUMBER 0xFD2FB527 /* v0.7 */
181
-
182
-
183
- #if defined (__cplusplus)
184
- }
185
- #endif
186
-
187
- #endif /* ZSTDv07_H_235446 */
@@ -1,203 +0,0 @@
1
- # ################################################################
2
- # Copyright (c) Yann Collet, Facebook, Inc.
3
- # All rights reserved.
4
- #
5
- # This source code is licensed under both the BSD-style license (found in the
6
- # LICENSE file in the root directory of this source tree) and the GPLv2 (found
7
- # in the COPYING file in the root directory of this source tree).
8
- # You may select, at your option, one of the above-listed licenses.
9
- # ################################################################
10
-
11
- ##################################################################
12
- # Input Variables
13
- ##################################################################
14
-
15
- # Zstd lib directory
16
- LIBZSTD ?= ./
17
-
18
- # Legacy support
19
- ZSTD_LEGACY_SUPPORT ?= 5
20
- ZSTD_LEGACY_MULTITHREADED_API ?= 0
21
-
22
- # Build size optimizations
23
- HUF_FORCE_DECOMPRESS_X1 ?= 0
24
- HUF_FORCE_DECOMPRESS_X2 ?= 0
25
- ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT ?= 0
26
- ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG ?= 0
27
- ZSTD_NO_INLINE ?= 0
28
- ZSTD_STRIP_ERROR_STRINGS ?= 0
29
-
30
- # Assembly support
31
- ZSTD_NO_ASM ?= 0
32
-
33
- ##################################################################
34
- # libzstd helpers
35
- ##################################################################
36
-
37
- VOID ?= /dev/null
38
-
39
- # Make 4.3 doesn't support '\#' anymore (https://lwn.net/Articles/810071/)
40
- NUM_SYMBOL := \#
41
-
42
- # define silent mode as default (verbose mode with V=1 or VERBOSE=1)
43
- $(V)$(VERBOSE).SILENT:
44
-
45
- # When cross-compiling from linux to windows,
46
- # one might need to specify TARGET_SYSTEM as "Windows."
47
- # Building from Fedora fails without it.
48
- # (but Ubuntu and Debian don't need to set anything)
49
- TARGET_SYSTEM ?= $(OS)
50
-
51
- # Version numbers
52
- LIBVER_SRC := $(LIBZSTD)/zstd.h
53
- LIBVER_MAJOR_SCRIPT:=`sed -n '/define ZSTD_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(LIBVER_SRC)`
54
- LIBVER_MINOR_SCRIPT:=`sed -n '/define ZSTD_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(LIBVER_SRC)`
55
- LIBVER_PATCH_SCRIPT:=`sed -n '/define ZSTD_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(LIBVER_SRC)`
56
- LIBVER_SCRIPT:= $(LIBVER_MAJOR_SCRIPT).$(LIBVER_MINOR_SCRIPT).$(LIBVER_PATCH_SCRIPT)
57
- LIBVER_MAJOR := $(shell echo $(LIBVER_MAJOR_SCRIPT))
58
- LIBVER_MINOR := $(shell echo $(LIBVER_MINOR_SCRIPT))
59
- LIBVER_PATCH := $(shell echo $(LIBVER_PATCH_SCRIPT))
60
- LIBVER := $(shell echo $(LIBVER_SCRIPT))
61
- CCVER := $(shell $(CC) --version)
62
- ZSTD_VERSION?= $(LIBVER)
63
-
64
- # ZSTD_LIB_MINIFY is a helper variable that
65
- # configures a bunch of other variables to space-optimized defaults.
66
- ZSTD_LIB_MINIFY ?= 0
67
- ifneq ($(ZSTD_LIB_MINIFY), 0)
68
- HAVE_CC_OZ ?= $(shell echo "" | $(CC) -Oz -x c -c - -o /dev/null 2> /dev/null && echo 1 || echo 0)
69
- ZSTD_LEGACY_SUPPORT ?= 0
70
- ZSTD_LIB_DEPRECATED ?= 0
71
- HUF_FORCE_DECOMPRESS_X1 ?= 1
72
- ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT ?= 1
73
- ZSTD_NO_INLINE ?= 1
74
- ZSTD_STRIP_ERROR_STRINGS ?= 1
75
- ifneq ($(HAVE_CC_OZ), 0)
76
- # Some compilers (clang) support an even more space-optimized setting.
77
- CFLAGS += -Oz
78
- else
79
- CFLAGS += -Os
80
- endif
81
- CFLAGS += -fno-stack-protector -fomit-frame-pointer -fno-ident \
82
- -DDYNAMIC_BMI2=0 -DNDEBUG
83
- else
84
- CFLAGS ?= -O3
85
- endif
86
-
87
- DEBUGLEVEL ?= 0
88
- CPPFLAGS += -DXXH_NAMESPACE=ZSTD_ -DDEBUGLEVEL=$(DEBUGLEVEL)
89
- ifeq ($(TARGET_SYSTEM),Windows_NT) # MinGW assumed
90
- CPPFLAGS += -D__USE_MINGW_ANSI_STDIO # compatibility with %zu formatting
91
- endif
92
- DEBUGFLAGS= -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \
93
- -Wstrict-aliasing=1 -Wswitch-enum -Wdeclaration-after-statement \
94
- -Wstrict-prototypes -Wundef -Wpointer-arith \
95
- -Wvla -Wformat=2 -Winit-self -Wfloat-equal -Wwrite-strings \
96
- -Wredundant-decls -Wmissing-prototypes -Wc++-compat
97
- CFLAGS += $(DEBUGFLAGS) $(MOREFLAGS)
98
- ASFLAGS += $(DEBUGFLAGS) $(MOREFLAGS) $(CFLAGS)
99
- LDFLAGS += $(MOREFLAGS)
100
- FLAGS = $(CPPFLAGS) $(CFLAGS) $(ASFLAGS) $(LDFLAGS)
101
-
102
- ifndef ALREADY_APPENDED_NOEXECSTACK
103
- export ALREADY_APPENDED_NOEXECSTACK := 1
104
- ifeq ($(shell echo "int main(int argc, char* argv[]) { (void)argc; (void)argv; return 0; }" | $(CC) $(FLAGS) -z noexecstack -x c -Werror - -o $(VOID) 2>$(VOID) && echo 1 || echo 0),1)
105
- LDFLAGS += -z noexecstack
106
- endif
107
- ifeq ($(shell echo | $(CC) $(FLAGS) -Wa,--noexecstack -x assembler -Werror -c - -o $(VOID) 2>$(VOID) && echo 1 || echo 0),1)
108
- CFLAGS += -Wa,--noexecstack
109
- # CFLAGS are also added to ASFLAGS
110
- else ifeq ($(shell echo | $(CC) $(FLAGS) -Qunused-arguments -Wa,--noexecstack -x assembler -Werror -c - -o $(VOID) 2>$(VOID) && echo 1 || echo 0),1)
111
- # See e.g.: https://github.com/android/ndk/issues/171
112
- CFLAGS += -Qunused-arguments -Wa,--noexecstack
113
- # CFLAGS are also added to ASFLAGS
114
- endif
115
- endif
116
-
117
- HAVE_COLORNEVER = $(shell echo a | grep --color=never a > /dev/null 2> /dev/null && echo 1 || echo 0)
118
- GREP_OPTIONS ?=
119
- ifeq ($HAVE_COLORNEVER, 1)
120
- GREP_OPTIONS += --color=never
121
- endif
122
- GREP = grep $(GREP_OPTIONS)
123
- SED_ERE_OPT ?= -E
124
-
125
- ZSTD_COMMON_FILES := $(sort $(wildcard $(LIBZSTD)/common/*.c))
126
- ZSTD_COMPRESS_FILES := $(sort $(wildcard $(LIBZSTD)/compress/*.c))
127
- ZSTD_DECOMPRESS_FILES := $(sort $(wildcard $(LIBZSTD)/decompress/*.c))
128
- ZSTD_DICTBUILDER_FILES := $(sort $(wildcard $(LIBZSTD)/dictBuilder/*.c))
129
- ZSTD_DEPRECATED_FILES := $(sort $(wildcard $(LIBZSTD)/deprecated/*.c))
130
- ZSTD_LEGACY_FILES :=
131
-
132
- ZSTD_DECOMPRESS_AMD64_ASM_FILES := $(sort $(wildcard $(LIBZSTD)/decompress/*_amd64.S))
133
-
134
- ifneq ($(ZSTD_NO_ASM), 0)
135
- CPPFLAGS += -DZSTD_DISABLE_ASM
136
- else
137
- # Unconditionally add the ASM files they are disabled by
138
- # macros in the .S file.
139
- ZSTD_DECOMPRESS_FILES += $(ZSTD_DECOMPRESS_AMD64_ASM_FILES)
140
- endif
141
-
142
- ifneq ($(HUF_FORCE_DECOMPRESS_X1), 0)
143
- CFLAGS += -DHUF_FORCE_DECOMPRESS_X1
144
- endif
145
-
146
- ifneq ($(HUF_FORCE_DECOMPRESS_X2), 0)
147
- CFLAGS += -DHUF_FORCE_DECOMPRESS_X2
148
- endif
149
-
150
- ifneq ($(ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT), 0)
151
- CFLAGS += -DZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT
152
- endif
153
-
154
- ifneq ($(ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG), 0)
155
- CFLAGS += -DZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG
156
- endif
157
-
158
- ifneq ($(ZSTD_NO_INLINE), 0)
159
- CFLAGS += -DZSTD_NO_INLINE
160
- endif
161
-
162
- ifneq ($(ZSTD_STRIP_ERROR_STRINGS), 0)
163
- CFLAGS += -DZSTD_STRIP_ERROR_STRINGS
164
- endif
165
-
166
- ifneq ($(ZSTD_LEGACY_MULTITHREADED_API), 0)
167
- CFLAGS += -DZSTD_LEGACY_MULTITHREADED_API
168
- endif
169
-
170
- ifneq ($(ZSTD_LEGACY_SUPPORT), 0)
171
- ifeq ($(shell test $(ZSTD_LEGACY_SUPPORT) -lt 8; echo $$?), 0)
172
- ZSTD_LEGACY_FILES += $(shell ls $(LIBZSTD)/legacy/*.c | $(GREP) 'v0[$(ZSTD_LEGACY_SUPPORT)-7]')
173
- endif
174
- endif
175
- CPPFLAGS += -DZSTD_LEGACY_SUPPORT=$(ZSTD_LEGACY_SUPPORT)
176
-
177
- UNAME := $(shell uname)
178
-
179
- ifndef BUILD_DIR
180
- ifeq ($(UNAME), Darwin)
181
- ifeq ($(shell md5 < /dev/null > /dev/null; echo $$?), 0)
182
- HASH ?= md5
183
- endif
184
- else ifeq ($(UNAME), FreeBSD)
185
- HASH ?= gmd5sum
186
- else ifeq ($(UNAME), NetBSD)
187
- HASH ?= md5 -n
188
- else ifeq ($(UNAME), OpenBSD)
189
- HASH ?= md5
190
- endif
191
- HASH ?= md5sum
192
-
193
- HASH_DIR = conf_$(shell echo $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(ZSTD_FILES) | $(HASH) | cut -f 1 -d " " )
194
- HAVE_HASH :=$(shell echo 1 | $(HASH) > /dev/null && echo 1 || echo 0)
195
- ifeq ($(HAVE_HASH),0)
196
- $(info warning : could not find HASH ($(HASH)), needed to differentiate builds using different flags)
197
- BUILD_DIR := obj/generic_noconf
198
- endif
199
- endif # BUILD_DIR
200
-
201
- ZSTD_SUBDIR := $(LIBZSTD)/common $(LIBZSTD)/compress $(LIBZSTD)/decompress $(LIBZSTD)/dictBuilder $(LIBZSTD)/legacy $(LIBZSTD)/deprecated
202
- vpath %.c $(ZSTD_SUBDIR)
203
- vpath %.S $(ZSTD_SUBDIR)
@@ -1,16 +0,0 @@
1
- # ZSTD - standard compression algorithm
2
- # Copyright (C) 2014-2016, Yann Collet, Facebook
3
- # BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
4
-
5
- prefix=@PREFIX@
6
- exec_prefix=@EXEC_PREFIX@
7
- includedir=@INCLUDEDIR@
8
- libdir=@LIBDIR@
9
-
10
- Name: zstd
11
- Description: fast lossless compression algorithm library
12
- URL: http://www.zstd.net/
13
- Version: @VERSION@
14
- Libs: -L${libdir} -lzstd
15
- Libs.private: @LIBS_PRIVATE@
16
- Cflags: -I${includedir}
@@ -1,25 +0,0 @@
1
- module libzstd [extern_c] {
2
- header "zstd.h"
3
- export *
4
- config_macros [exhaustive] /* zstd.h */ \
5
- ZSTD_STATIC_LINKING_ONLY, \
6
- ZSTDLIB_VISIBLE, \
7
- ZSTD_DLL_EXPORT, \
8
- ZSTDLIB_STATIC_API, \
9
- ZSTD_DISABLE_DEPRECATE_WARNINGS, \
10
- ZSTD_CLEVEL_DEFAULT, \
11
- /* zdict.h */ ZDICT_STATIC_LINKING_ONLY, \
12
- ZDICTLIB_VISIBILITY, \
13
- ZDICT_DISABLE_DEPRECATE_WARNINGS, \
14
- /* zstd_errors.h */ ZSTDERRORLIB_VISIBILITY
15
-
16
- module dictbuilder [extern_c] {
17
- header "zdict.h"
18
- export *
19
- }
20
-
21
- module errors [extern_c] {
22
- header "zstd_errors.h"
23
- export *
24
- }
25
- }