BizHawk/ExternalProjects/LibBizHash
CasualPokePlayer 1909950742 Rebuild most of the .so's on Debian 10
Also fix up libbizhash so it builds on clang
Slight fixes to sameboy and msxhawk makefiles
Fix rcheevo submodule commit (no actual changes, just make it point to a commit upstream actually has)
SDL2 .so not yet rebuilt, need to consider how to do that
citra seems to need at least Debian 11 to build
libe_sqlite3.so seemed to have already been built with Debian 10 so not bothering touching that
libwaterboxhost.so is Rust / targets glibc 2.28 anyways, nothing needs to be done there
2023-11-22 00:50:47 -08:00
..
common Implement hardware accelerated CRC32 and SHA1, using them if possible (#3348) 2022-08-09 23:30:17 -07:00
crc32 Rebuild most of the .so's on Debian 10 2023-11-22 00:50:47 -08:00
sha1 Rebuild most of the .so's on Debian 10 2023-11-22 00:50:47 -08:00
Makefile Implement hardware accelerated CRC32 and SHA1, using them if possible (#3348) 2022-08-09 23:30:17 -07:00
README.md Implement hardware accelerated CRC32 and SHA1, using them if possible (#3348) 2022-08-09 23:30:17 -07:00
bizinterface.c Implement hardware accelerated CRC32 and SHA1, using them if possible (#3348) 2022-08-09 23:30:17 -07:00

README.md

LibBizHash is the unmanaged side for BizHawk's hashing.

CRC32 code is taken from zlib-ng with massive slashing of code and various tweaks. This code is licensed under the zlib license. SHA1 is code is taken from SHA-Intrinsics with some tweaks. This code is under the public domain.

To build, just do make in this directory. Note gcc 10 or later is required (due to missing intrinsics in older gcc versions)

zlib-ng's license:

(C) 1995-2013 Jean-loup Gailly and Mark Adler

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

    The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.

    Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.

    This notice may not be removed or altered from any source distribution.