mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 13:17:56 +00:00
63d5cec1c6
git subtree add --squash --prefix libsodium git@github.com:jedisct1/libsodium.git 1.0.13 git commit --amend (to rewrite this commit message)
19 lines
411 B
Bash
Executable File
19 lines
411 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
|