mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-22 04:24:19 +00:00
Windows build tweaks.
This commit is contained in:
parent
2f2bf745c4
commit
a7518360ad
2
README
2
README
@ -15,7 +15,7 @@ Basic *nix build instructions:
|
|||||||
|
|
||||||
Basic WIN32 build instructions (on Fedora 13; requires mingw32):
|
Basic WIN32 build instructions (on Fedora 13; requires mingw32):
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
MINGW32_CFLAGS="-O2 -Wall -msse2 -g" mingw32-configure
|
MINGW32_CFLAGS="-O2 -Wall -msse2" mingw32-configure
|
||||||
make
|
make
|
||||||
./mknsis.sh
|
./mknsis.sh
|
||||||
|
|
||||||
|
16
mknsis.sh
16
mknsis.sh
@ -2,10 +2,13 @@
|
|||||||
|
|
||||||
MINGW_PATH=/usr/i686-pc-mingw32/sys-root/mingw/bin
|
MINGW_PATH=/usr/i686-pc-mingw32/sys-root/mingw/bin
|
||||||
|
|
||||||
|
OUT_BASE="cpuminer-installer"
|
||||||
|
OUT_EXE="$OUT_BASE.exe"
|
||||||
|
|
||||||
PATH=$PATH:$MINGW_PATH \
|
PATH=$PATH:$MINGW_PATH \
|
||||||
nsiswrapper --run \
|
nsiswrapper --run \
|
||||||
--name "CPU miner" \
|
--name "CPU miner" \
|
||||||
--outfile cpuminer-installer.exe \
|
--outfile "$OUT_EXE" \
|
||||||
minerd.exe \
|
minerd.exe \
|
||||||
$MINGW_PATH/libcurl-4.dll=libcurl-4.dll \
|
$MINGW_PATH/libcurl-4.dll=libcurl-4.dll \
|
||||||
$MINGW_PATH/pthreadgc2.dll=pthreadgc2.dll \
|
$MINGW_PATH/pthreadgc2.dll=pthreadgc2.dll \
|
||||||
@ -17,4 +20,15 @@ PATH=$PATH:$MINGW_PATH \
|
|||||||
$MINGW_PATH/libiconv-2.dll=libiconv-2.dll \
|
$MINGW_PATH/libiconv-2.dll=libiconv-2.dll \
|
||||||
$MINGW_PATH/libintl-8.dll=libintl-8.dll
|
$MINGW_PATH/libintl-8.dll=libintl-8.dll
|
||||||
|
|
||||||
|
chmod 0755 "$OUT_EXE"
|
||||||
|
zip -9 "$OUT_BASE" "$OUT_EXE"
|
||||||
|
rm -f "$OUT_EXE"
|
||||||
|
|
||||||
|
chmod 0644 "$OUT_BASE.zip"
|
||||||
|
|
||||||
|
echo -n "SHA1: "
|
||||||
|
sha1sum "$OUT_BASE.zip"
|
||||||
|
|
||||||
|
echo -n "MD5: "
|
||||||
|
md5sum "$OUT_BASE.zip"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user