forked from FFTW/fftw3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD-MINGW32.sh
71 lines (58 loc) · 2.52 KB
/
BUILD-MINGW32.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
set -e
confflags="--prefix=`pwd`/mingw32 --host=i686-w64-mingw32 --with-our-malloc --with-windows-f77-mangling --enable-shared --disable-static --enable-threads --with-combined-threads --with-incoming-stack-boundary=2"
export ENVIRONMENT_LIBFFTW3_LDFLAGS='-Wc,-static-libgcc'
rm -rf mingw32
(
rm -rf double-mingw32
mkdir double-mingw32
cd double-mingw32
../configure ${confflags} --enable-sse2 --enable-avx && make -j4 && make install
cp -f tests/.libs/bench.exe `pwd`/../mingw32/bin/bench.exe
)
(
rm -rf single-mingw32
mkdir single-mingw32
cd single-mingw32
../configure ${confflags} --enable-sse --enable-avx --enable-float && make -j4 && make install
cp -f tests/.libs/bench.exe `pwd`/../mingw32/bin/benchf.exe
)
(
rm -rf ldouble-mingw32
mkdir ldouble-mingw32
cd ldouble-mingw32
../configure ${confflags} --enable-long-double && make -j4 && make install
cp -f tests/.libs/bench.exe `pwd`/../mingw32/bin/benchl.exe
)
(
cd mingw32/bin
for dll in *.dll; do
def=`basename $dll .dll`.def
lib=`basename $dll .dll`.lib
echo "LIBRARY $dll" > $def
echo EXPORTS >> $def
i686-w64-mingw32-nm $dll | grep ' T _' | sed 's/.* T _//' | grep fftw >> $def
i686-w64-mingw32-dlltool -l $lib -d $def
done
)
perl -pi -e 's,^ * #define FFTW_DLL,*/\n#define FFTW_DLL\n/*,' mingw32/include/fftw3.h
cat > README-WINDOWS <<EOF
This .zip archive contains DLL libraries and the associated header (.h)
and module-definition (.def) files of FFTW compiled for Win32. It
also contains the corresponding bench.exe test/benchmark programs
and wisdom utilities.
There are three libraries: single precision (float), double precision,
and extended precision (long double). To use the third library,
your compiler must have sizeof(long double) == 12.
The .lib "import libraries" for Visual C++ are created by dlltool from GNU binutils.
The single- and double-precision libraries use SSE and SSE2, respectively,
but should also work on older processors (the library checks at runtime
to see whether SSE/SSE2 is supported and disables the relevant code if not).
They were compiled by the GNU C compiler for MinGW, specifically:
EOF
i686-w64-mingw32-gcc --version |head -1 >> README-WINDOWS
cp -f tests/README README-bench
fftw_vers=`grep PACKAGE_VERSION double-mingw32/config.h |cut -d" " -f3 |tr -d \"`
zip=fftw-${fftw_vers}-dll32.zip
rm -f $zip
zip -vj $zip mingw32/bin/*.dll mingw32/bin/*.lib mingw32/bin/*.exe
zip -vjgl $zip mingw32/bin/*.def mingw32/include/* README COPYING COPYRIGHT NEWS README-WINDOWS README-bench