Files
cpuminer-opt-gpu/junk/mingw64.sh
Jay D Dee 73430b13b1 v3.10.1
2019-12-05 19:09:23 -05:00

30 lines
842 B
Bash

./autogen.sh
CURL_PREFIX=/usr/local
SSL_PREFIX=/usr/local/ssl
# gcc 4.4
extracflags="-O3 -Wall -D_REENTRANT -fmerge-all-constants" # -funroll-loops -fvariable-expansion-in-unroller -fbranch-target-load-optimize2 -fsched2-use-superblocks -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16"
# gcc 4.8+
# extracflags="$extracflags -Ofast -fuse-linker-plugin -ftree-loop-if-convert-stores" # -flto "
# extracflags="-pg -static -fno-inline-small-functions"
CFLAGS="-DCURL_STATICLIB -DOPENSSL_NO_ASM -DUSE_ASM $extracflags"
# CPPFLAGS=""
# icon
windres res/icon.rc icon.o
./configure --build=x86_64-w64-mingw32 --with-crypto=$SSL_PREFIX --with-curl=$CURL_PREFIX \
CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" LDFLAGS="icon.o"
make
strip -p --strip-debug --strip-unneeded cpuminer.exe
if [ -e sign.sh ] ; then
. sign.sh
fi