Skip to content

Commit

Permalink
feat(modules/xxHash): bumped xxHash version to 0.8.2 to support s390x…
Browse files Browse the repository at this point in the history
… fixes (#67)

deps(xxHash): bumped xxHash version to 0.8.2 to support s390x fixes
  • Loading branch information
araujof authored Apr 12, 2024
2 parents b692bfa + 600b1e2 commit 27c0e2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion makefile.manifest.inc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ GLOG_VERSION=v0.6.0
SNAPPY_VERSION=1.1.9
DKMS_VERSION=v3.0.3
GHCFS_VERSION=v1.5.14
XXHASH_VERSION=v0.8.1
XXHASH_VERSION=v0.8.2
SPARSE_VERSION=sparsehash-2.0.4
ALPINE_VERSION=3.18.3
UBI_VERSION=9.3-1552
1 change: 1 addition & 0 deletions modules/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ endif
cd dkms && git fetch origin && git checkout $(DKMS_VERSION)
cd filesystem && git fetch origin && git checkout $(GHCFS_VERSION)
cd sparsehash && git fetch origin && git checkout $(SPARSE_VERSION)
cd xxHash && git fetch origin && git checkout $(XXHASH_VERSION)

# libelf is a pre-requisite for libs build
.PHONY: modules
Expand Down
2 changes: 1 addition & 1 deletion modules/xxHash
Submodule xxHash updated 58 files
+7 −0 .github/dependabot.yml
+243 −52 .github/workflows/ci.yml
+5 −0 .gitignore
+24 −0 CHANGELOG
+9 −4 Doxyfile
+63 −0 Doxyfile-internal
+1 −1 LICENSE
+114 −20 Makefile
+35 −18 README.md
+13 −0 SECURITY.md
+3 −0 cli/.tipi/deps
+0 −0 cli/.tipi/opts
+24 −8 cli/xsum_arch.h
+13 −1 cli/xsum_bench.c
+30 −4 cli/xsum_os_specific.c
+1 −1 cli/xsum_os_specific.h
+2 −1 cli/xsum_output.c
+1 −1 cli/xsum_output.h
+30 −28 cli/xsum_sanity_check.c
+1 −1 cli/xsum_sanity_check.h
+31 −17 cli/xxhsum.1
+33 −27 cli/xxhsum.1.md
+229 −22 cli/xxhsum.c
+49 −11 cmake_unofficial/CMakeLists.txt
+23 −0 cmake_unofficial/JoinPaths.cmake
+1 −0 cmake_unofficial/README.md
+474 −5 doc/xxhash_spec.md
+3 −3 libxxhash.pc.in
+25 −2 tests/Makefile
+1 −1 tests/bench/Makefile
+3 −1 tests/bench/benchHash.c
+1 −1 tests/bench/benchHash.h
+2 −1 tests/bench/benchfn.c
+1 −1 tests/bench/benchfn.h
+1 −1 tests/bench/bhDisplay.c
+1 −1 tests/bench/bhDisplay.h
+1 −1 tests/bench/hashes.h
+1 −1 tests/bench/main.c
+1 −1 tests/bench/timefn.c
+1 −1 tests/bench/timefn.h
+32 −0 tests/cli-comment-line.sh
+51 −0 tests/cli-ignore-missing.sh
+1 −1 tests/collisions/Makefile
+1 −1 tests/collisions/hashes.h
+2 −2 tests/collisions/main.c
+1 −1 tests/collisions/pool.c
+1 −1 tests/collisions/pool.h
+1 −1 tests/collisions/sort.cc
+1 −1 tests/collisions/sort.hh
+21 −0 tests/filename-escape.sh
+763 −0 tests/sanity_test.c
+45,832 −0 tests/sanity_test_vectors.h
+464 −0 tests/sanity_test_vectors_generator.c
+1 −1 xxh3.h
+145 −70 xxh_x86dispatch.c
+9 −10 xxh_x86dispatch.h
+1 −1 xxhash.c
+2,108 −915 xxhash.h

0 comments on commit 27c0e2c

Please sign in to comment.