forked from cory/tildefriends
Cory McWilliams
352f33f5a1
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3859 ed5197a5-7fde-0310-b194-c3ffbd925b24
19 lines
424 B
Bash
Executable File
19 lines
424 B
Bash
Executable File
#! /bin/sh
|
|
|
|
export CFLAGS="-Ofast -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
|