mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-19 01:55:02 -07:00
19 lines
401 B
Bash
Executable File
19 lines
401 B
Bash
Executable File
#! /bin/sh
|
|
|
|
export CFLAGS="-O3 -fomit-frame-pointer -m64 -mtune=westmere"
|
|
export PREFIX="$(pwd)/libsodium-win64"
|
|
|
|
if (x86_64-w64-mingw32-gcc --version >/dev/null 2>&1); then
|
|
echo MinGW found
|
|
else
|
|
echo Please install mingw-w64-x86_64-gcc >&2
|
|
exit
|
|
fi
|
|
|
|
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
|
|
--host=x86_64-w64-mingw32 &&
|
|
make clean &&
|
|
make &&
|
|
make check &&
|
|
make install
|