setup script improvements, automatically clone xmrig-hac and build for multiple platforms

This commit is contained in:
2026-03-03 01:47:44 -06:00
parent c778e03f37
commit 0d30ebc8e8
560 changed files with 146800 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
#! /bin/sh
export CFLAGS="-Ofast -fomit-frame-pointer -m64 -mtune=westmere"
export PREFIX="$(pwd)/libsodium-win64"
if (x86_64-w64-mingw32-gcc --version > /dev/null 2>&1) then
echo MinGW found
else
echo Please install mingw-w64-x86_64-gcc >&2
exit
fi
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
--host=x86_64-w64-mingw32 && \
make clean && \
make && \
make check && \
make install