mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-25 15:51:08 +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
421 B
Bash
Executable File
19 lines
421 B
Bash
Executable File
#! /bin/sh
|
|
|
|
export CFLAGS="-O3 -fomit-frame-pointer -m32 -march=pentium3 -mtune=westmere"
|
|
export PREFIX="$(pwd)/libsodium-win32"
|
|
|
|
if (i686-w64-mingw32-gcc --version > /dev/null 2>&1) then
|
|
echo MinGW found
|
|
else
|
|
echo Please install mingw-w64-i686-gcc >&2
|
|
exit
|
|
fi
|
|
|
|
./configure --prefix="$PREFIX" --exec-prefix="$PREFIX" \
|
|
--host=i686-w64-mingw32 && \
|
|
make clean && \
|
|
make && \
|
|
make check && \
|
|
make install
|