forked from FFTW/fftw3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD-MINGW64.sh
83 lines (66 loc) · 2.93 KB
/
BUILD-MINGW64.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
72
73
74
75
76
77
78
79
80
81
82
83
set -e
confflags="--prefix=`pwd`/mingw64 --host=x86_64-w64-mingw32 --disable-alloca --with-our-malloc --with-windows-f77-mangling --enable-shared --disable-static --enable-threads --with-combined-threads"
export ENVIRONMENT_LIBFFTW3_LDFLAGS='-Wc,-static-libgcc'
rm -rf mingw64
(
rm -rf double-mingw64
mkdir double-mingw64
cd double-mingw64
../configure ${confflags} --enable-sse2 --enable-avx && make -j4 && make install
cp -f tests/.libs/bench.exe `pwd`/../mingw64/bin/bench.exe
)
(
rm -rf single-mingw64
mkdir single-mingw64
cd single-mingw64
../configure ${confflags} --enable-sse2 --enable-avx --enable-float && make -j4 && make install
cp -f tests/.libs/bench.exe `pwd`/../mingw64/bin/benchf.exe
)
(
rm -rf ldouble-mingw64
mkdir ldouble-mingw64
cd ldouble-mingw64
../configure ${confflags} --enable-long-double && make -j4 && make install
cp -f tests/.libs/bench.exe `pwd`/../mingw64/bin/benchl.exe
)
(
cd mingw64/bin
for dll in *.dll; do
def=`basename $dll .dll`.def
lib=`basename $dll .dll`.lib
echo "LIBRARY $dll" > $def
echo EXPORTS >> $def
# For some reason mingw does not prepend an underscore anymore in
# 64-bit mode. Hmmm...
# x86_64-w64-mingw32-nm $dll | grep ' T _' | sed 's/.* T _//' | grep fftw >> $def
x86_64-w64-mingw32-nm $dll | grep ' T ' | sed 's/.* T //' | grep fftw >> $def
x86_64-w64-mingw32-dlltool -l $lib -d $def
done
)
perl -pi -e 's,^ * #define FFTW_DLL,*/\n#define FFTW_DLL\n/*,' mingw64/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 Win64. 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.
On Visual Studio 2008 in 64-bit mode, and possibly in
other cases, you may need to specify the machine explicitly:
lib /machine:x64 /def:libfftw3f-3.def
lib /machine:x64 /def:libfftw3-3.def
lib /machine:x64 /def:libfftw3l-3.def
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
x86_64-w64-mingw32-gcc --version |head -1 >> README-WINDOWS
cp -f tests/README README-bench
fftw_vers=`grep PACKAGE_VERSION double-mingw64/config.h |cut -d" " -f3 |tr -d \"`
zip=fftw-${fftw_vers}-dll64.zip
rm -f $zip
zip -vj $zip mingw64/bin/*.dll mingw64/bin/*.lib mingw64/bin/*.exe
zip -vjgl $zip mingw64/bin/*.def mingw64/include/* README COPYING COPYRIGHT NEWS README-WINDOWS README-bench