CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2023/08/17 00:40:53
Modified files:
sysutils/xxhash: Makefile
Added files:
sysutils/xxhash/patches: patch-xxhash_h
Log message:
xxhash: patch to avoid unaligned access seen by tb@ in rsync on sparc64
the code has several methods to access memory and tries to pick a well
performing one on various archs, but the one they end up picking on
sparc64 ends up trying to fetch 64 bits from an unaligned address
suggestion from naddy to avoid hardcoding archs, ok bket@ tb@