Add a build script for msys-win64, rename msys.sh to msys-win32.sh

This commit is contained in:
Frank Denis 2013-12-30 17:54:16 +01:00
parent 9a88b1ed74
commit eab6ff79d4
2 changed files with 10 additions and 0 deletions

10
dist-build/msys-win64.sh Executable file
View File

@ -0,0 +1,10 @@
#! /bin/sh
export CFLAGS="-O3 -fomit-frame-pointer -m64"
export PREFIX="$(pwd)/libsodium-win64"
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
--host=x86_64-w64-mingw32 && \
make && \
make check && \
make install