-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zstandard v1.1.3 #531
Merged
Zstandard v1.1.3 #531
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Export ZBUFF_isError() and ZBUFF_getErrorName()
added zbufftest-dll
# Conflicts: # appveyor.yml
Offset rep codes must be in the range `[1, dictSize)`. Fix dictionary loading to reject `0` as a offset rep code.
Fix dictionary loading bug causing an MSAN failure
Fix cmake build (MSVC)
test CMake on Windows
Add BUCK files for Nuclide integration
Multithreaded COVER dictionary training
Follows a positive logic (increasing value => increasing overlap) which is easier to use
for Multi-threading only. alias : -B#
as a hidden (undocumented) parameter for now
the minimum size condition size is applied transparently (no warning, no error) like previous minimum section size condition (1 KB) which still applies.
zstdmt refinements
fixed a minor unused variable warning when compiling zstd-frugal target
.gz support is detected by a runtime test.
release build are triggered through either `make`, or their specific target `make zstd-release` and `make lib-release`.
in gz module
result of compilation test is sent to /dev/null
Tested with `make install && man zstd` and visual inspection.
Add cover dictionary training to zstd.1
this target does no longer exist
When it fails, $(CC) sends error message into stderr redirected to /dev/null
these directories are now removed with -r command
Gzstd default
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
v1.1.3
cli : zstd can decompress .gz files (can be disabled with
make zstd-nogz
ormake HAVE_ZLIB=0
)cli : new : experimental target
make zstdmt
, with multi-threading supportcli : new : improved dictionary builder "cover" (experimental), by @terrelln
cli : new : advanced commands for detailed parameters, by @inikep
cli : fix zstdless on Mac OS-X, by @apjanke
cli : fix #232 "compress non-files"
dictBuilder : improved dictionary generation quality, thanks to @terrelln
API : new : lib/compress/ZSTDMT_compress.h multithreading API (experimental)
API : new : ZSTD_create?Dict_byReference(), requested by Bartosz Taudul
API : new : ZDICT_finalizeDictionary()
API : fix : ZSTD_initCStream_usingCDict() properly writes dictID into frame header, by @indygreg (#511)
API : fix : all symbols properly exposed in libzstd, by @terrelln
build : support for Solaris target, by @inikep
doc : clarified specification, by @iburinoc