Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eef946a

Browse files
committed
Import zstd 1.5.7
1 parent c4e30be commit eef946a

File tree

630 files changed

+175029
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

630 files changed

+175029
-100
lines changed

.buckconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[cxx]
2+
cppflags = -DXXH_NAMESPACE=ZSTD_ -DZSTD_LEGACY_SUPPORT=4
3+
cflags = -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow -Wstrict-aliasing=1 -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes -Wundef -Wpointer-arith
4+
cxxppflags = -DXXH_NAMESPACE=ZSTD_ -DZSTD_LEGACY_SUPPORT=4
5+
cxxflags = -std=c++11 -Wno-deprecated-declarations
6+
gtest_dep = //contrib/pzstd:gtest
7+
8+
[httpserver]
9+
port = 0

.buckversion

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c8dec2e8da52d483f6dd7c6cd2ad694e8e6fed2b

.cirrus.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
task:
2+
name: FreeBSD (make check)
3+
freebsd_instance:
4+
matrix:
5+
image_family: freebsd-14-2
6+
install_script: pkg install -y gmake coreutils
7+
script: |
8+
MOREFLAGS="-Werror" gmake -j all
9+
gmake check

.gitattributes

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Set the default behavior
2+
* text eol=lf
3+
4+
# Explicitly declare source files
5+
*.c text eol=lf
6+
*.h text eol=lf
7+
8+
# Denote files that should not be modified.
9+
*.odt binary
10+
*.png binary
11+
12+
# Visual Studio
13+
*.sln text eol=crlf
14+
*.vcxproj* text eol=crlf
15+
*.vcproj* text eol=crlf
16+
*.suo binary
17+
*.rc text eol=crlf
18+
19+
# Windows
20+
*.bat text eol=crlf
21+
*.cmd text eol=crlf

.github/workflows/autoclose.yaml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.gitignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Object files
2+
*.o
3+
*.ko
4+
*.dSYM
5+
6+
# Libraries
7+
*.lib
8+
*.a
9+
10+
# Shared objects (inc. Windows DLLs)
11+
*.dll
12+
*.so
13+
*.so.*
14+
*.dylib
15+
*.framework
16+
*.xcframework
17+
18+
# Executables
19+
/zstd
20+
zstdmt
21+
*.exe
22+
*.out
23+
*.app
24+
25+
# Test artefacts
26+
tmp*
27+
*.zst
28+
*.zstd
29+
dictionary.
30+
dictionary
31+
NUL
32+
cmakebuild/
33+
install/
34+
35+
# Build artefacts
36+
contrib/linux-kernel/linux/
37+
projects/
38+
bin/
39+
.buckd/
40+
buck-out/
41+
build-*
42+
*.gcda
43+
44+
# IDE
45+
.clang_complete
46+
compile_flags.txt
47+
.clang-format
48+
49+
# Other files
50+
.directory
51+
_codelite/
52+
_zstdbench/
53+
*.idea
54+
*.swp
55+
.DS_Store
56+
googletest/
57+
*.d
58+
*.vscode
59+
*.code-workspace
60+
compile_commands.json
61+
.clangd
62+
perf.data
63+
perf.data.old

CHANGELOG

Lines changed: 863 additions & 0 deletions
Large diffs are not rendered by default.

CODE_OF_CONDUCT.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Code of Conduct
2+
3+
Facebook has adopted a Code of Conduct that we expect project participants to adhere to.
4+
Please read the [full text](https://code.fb.com/codeofconduct/)
5+
so that you can understand what actions will and will not be tolerated.

CONTRIBUTING.md

Lines changed: 489 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)