1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 10:05:05 -07:00
libsodium/dist-build/msys2-win32.sh

19 lines
411 B
Bash
Raw Permalink Normal View History

2014-05-05 15:50:15 -07:00
#! /bin/sh
export CFLAGS="-O3 -fomit-frame-pointer -m32 -march=pentium3 -mtune=westmere"
2014-05-05 15:50:15 -07:00
export PREFIX="$(pwd)/libsodium-win32"
2020-07-04 06:32:13 -07:00
if (i686-w64-mingw32-gcc --version >/dev/null 2>&1); then
2016-04-13 01:49:55 -07:00
echo MinGW found
else
echo Please install mingw-w64-i686-gcc >&2
exit
fi
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
2020-07-04 06:32:13 -07:00
--host=i686-w64-mingw32 &&
make clean &&
make &&
make check &&
make install