Skip to content

Commit

Permalink
fix x64 build script to strip 64 bit executables
Browse files Browse the repository at this point in the history
  • Loading branch information
Thirtybird committed Mar 8, 2014
1 parent 9a96588 commit b9ff888
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build_x64.sh
Expand Up @@ -3,41 +3,41 @@
./configure --host=x86_64-w64-mingw32 CFLAGS="-O3 -march=nocona -DCPU_X86_FORCE_INTRINSICS"
make clean
make
strip minerd.exe
x86_64-w64-mingw32-strip minerd.exe
mv minerd.exe minerd-x64-nocona.exe

./configure --host=x86_64-w64-mingw32 CFLAGS="-O3 -march=core2 -DCPU_X86_FORCE_INTRINSICS"
make clean
make
strip minerd.exe
x86_64-w64-mingw32-strip minerd.exe
mv minerd.exe minerd-x64-core2.exe

./configure --host=x86_64-w64-mingw32 CFLAGS="-O3 -march=corei7 -DCPU_X86_FORCE_INTRINSICS"
make clean
make
strip minerd.exe
x86_64-w64-mingw32-strip minerd.exe
mv minerd.exe minerd-x64-corei7.exe

./configure --host=x86_64-w64-mingw32 CFLAGS="-O3 -march=corei7-avx -DCPU_X86_FORCE_INTRINSICS"
make clean
make
strip minerd.exe
x86_64-w64-mingw32-strip minerd.exe
mv minerd.exe minerd-x64-avx.exe

./configure --host=x86_64-w64-mingw32 CFLAGS="-O3 -march=core-avx-i -DCPU_X86_FORCE_INTRINSICS"
make clean
make
strip minerd.exe
x86_64-w64-mingw32-strip minerd.exe
mv minerd.exe minerd-x64-avx-i.exe

./configure --host=x86_64-w64-mingw32 CFLAGS="-O3 -march=core-avx2 -DCPU_X86_FORCE_INTRINSICS"
make clean
make
strip minerd.exe
x86_64-w64-mingw32-strip minerd.exe
mv minerd.exe minerd-x64-avx2.exe

./configure --host=x86_64-w64-mingw32 CFLAGS="-O3 -march=athlon-fx -DCPU_X86_FORCE_INTRINSICS"
make clean
make
strip minerd.exe
x86_64-w64-mingw32-strip minerd.exe
mv minerd.exe minerd-x64-athlonfx.exe

0 comments on commit b9ff888

Please sign in to comment.