This repository has been archived by the owner on Mar 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
make_mingw.sh
51 lines (45 loc) · 1.74 KB
/
make_mingw.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/sh
#
#
# The easiest way to build AFFLIB for Win32 is to ues MinGW as either a cross-compiler
# or as a native compiler. In either case you will need to install OpenSSL and optionally
# libregex.
#
# This file is a work of a US government employee and as such is in the Public domain.
# Simson L. Garfinkel, March 12, 2012
#
# This script will compile AFFLIB for Win32 on either Mac or Linux.
# To install OpenSSL on On Linux, first download OpenSSL 1.0.0 and then:
# ./Configure mingw --prefix=/usr/i586-mingw32msvc/
# sudo make install
if test -r /opt/local/bin/i386-mingw32-gcc ; then
echo Compiling for mingw on a Mac installed with MacPorts
MBIN=/opt/local/bin/
MPREFIX=/opt/local/i386-mingw32
export CC=$MBIN/i386-mingw32-gcc
export CXX=$MBIN/i386-mingw32-g++
export RANLIB=$MBIN/i386-mingw32-ranlib
export AR=$MBIN/i386-mingw32-ar
export PREFIX=/opt/local/i386-mingw32/
export MINGWFLAGS="-mwin32 -mconsole -march=pentium4 "
export CFLAGS="$MINGWFLAGS"
export CXXFLAGS="$MINGWFLAGS"
fi
if test -r /usr/i586-mingw32msvc ; then
echo Compiling for mingw on Linux
export PREFIX=/usr/i586-mingw32msvc
export MINGW32PATH=/usr/i586-mingw32msvc
export CC=/usr/bin/i586-mingw32msvc-gcc
export CXX=/usr/bin/i586-mingw32msvc-g++
export AR=${MINGW32PATH}/bin/ar
export RANLIB=${MINGW32PATH}/bin/ranlib
export STRIP=${MINGW32PATH}/bin/strip
export MINGWFLAGS="-mwin32 -mconsole -march=i586 "
export CFLAGS="$MINGWFLAGS"
export CXXFLAGS="$MINGWFLAGS"
fi
autoreconf -f
./configure CC=$CC CXX=$CXX RANLIB=$RANLIB --target=i586-mingw32msvc --host=i586 --enable-winapi=yes --prefix=$PREFIX
make CC=$CC CXX=$CXX RANLIB=$RANLIB CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS"
# Make a release of the executables
zip afflib_windows.zip tools/*.exe