libsodium/dist-build/msys2-win64.sh
Frank Denis e7d9129729 Run make distclean, not just make clean in the msys2 build scripts
for consistency with other build scripts
2015-12-10 10:26:15 +01:00

13 lines
279 B
Bash
Executable File

#! /bin/sh
export CFLAGS="-O3 -fomit-frame-pointer -m64 -mtune=nocona"
export PREFIX="$(pwd)/libsodium-win64"
make distclean > /dev/null
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
--host=x86_64-w64-mingw32 && \
make && \
make check && \
make install