xxhash_cpp
xxhash_cpp copied to clipboard
Port of the xxhash library to C++17.
The most recent release of [xxhash is 0.8.0](https://github.com/Cyan4973/xxHash/releases/tag/v0.8.0) Do you have plans to update xxhash_cpp to that version? Changes to be incorporated are as far as I see: * https://github.com/Cyan4973/xxHash/releases/tag/v0.7.4...
Hi, I'm attempting to implement xxhash_cpp in a project, where unsurprisingly, I need to generate the xxhash64 for a file and check it against a known hash string. But I've...
This version is slightly behind the head version of xxHash. Are you planning to update?
Hi, thank you for the great library! I’m currently using xxhash on an ARM Linux system running Ubuntu 24.04, and I noticed that the current use of sse2neon.h seems to...
**Describe the bug** [ 33%] Building CXX object test/CMakeFiles/test_sse2.dir/test_main.cpp.o [ 33%] Building CXX object test/CMakeFiles/test_avx2.dir/test_main.cpp.o [ 50%] Building CXX object test/CMakeFiles/test_scalar.dir/test_main.cpp.o In file included from /Users/cx/software/cpp/tmp/xxhash_cpp/test/test_main.cpp:15: In file included from...
https://github.com/RedSpah/xxhash_cpp/pull/41 adds _MM_PERM_ENUM casts which are only defined on x86_64 bit machines. This breaks compiling the code on any arm architecture (e.g. apple M1). Is it possible to add architecture...