]> sigrok.org Git - sigrok-util.git/blob - cross-compile/mingw/sigrok-cross-mingw
sigrok-cross-mingw: Get libusb0.dll from libusb-win32.
[sigrok-util.git] / cross-compile / mingw / sigrok-cross-mingw
1 #!/bin/bash
2 ##
3 ## This file is part of the sigrok-util project.
4 ##
5 ## Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.de>
6 ##
7 ## This program is free software; you can redistribute it and/or modify
8 ## it under the terms of the GNU General Public License as published by
9 ## the Free Software Foundation; either version 2 of the License, or
10 ## (at your option) any later version.
11 ##
12 ## This program is distributed in the hope that it will be useful,
13 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ## GNU General Public License for more details.
16 ##
17 ## You should have received a copy of the GNU General Public License
18 ## along with this program; if not, write to the Free Software
19 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20 ##
21
22 set -e
23
24 # The path where your MXE directory is located.
25 MXE=$HOME/mxe-git
26
27 # The path where the cross-compiled packages will be installed.
28 PREFIX=$HOME/sr_mingw
29
30 # The path where to download files to and where to build packages.
31 BUILDDIR=./sr_mingw_build
32
33 # You usually don't need to change anything below this line.
34
35 # -----------------------------------------------------------------------------
36
37 VER_LIBUSB_WIN32=1.2.6.0
38
39 SF_MIRROR=switch.dl.sourceforge.net
40
41 # -----------------------------------------------------------------------------
42
43 # We need to find tools in the toolchain and in the install directory.
44 export PATH=$PREFIX/bin:$MXE/usr/bin:$PATH
45
46 P="$PREFIX/lib/pkgconfig"
47 P2="$MXE/usr/i686-pc-mingw32/lib/pkgconfig"
48 C="--host=i686-pc-mingw32 --prefix=$PREFIX"
49 CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/i686-pc-mingw32/share/cmake/mxe-conf.cmake"
50 L="--disable-shared --enable-static"
51
52 # Remove build directory contents (if any) and create a new build dir.
53 rm -rf $BUILDDIR
54 mkdir $BUILDDIR
55 cd $BUILDDIR
56
57 # -----------------------------------------------------------------------------
58
59 # Python3
60 # Cross-compiling Python is highly non-trivial, so we avoid it for now.
61 # The download below is a repackaged tarball of the official Python 3.2.3 MSI
62 # installer for Windows: http://python.org/ftp/python/3.2.3/python-3.2.3.msi
63 # The MSI file has been installed on a Windows box and then the c:\Python32
64 # files have been stored in the Python32.tar.gz tarball.
65 mkdir -p $PREFIX
66 wget http://www.sigrok.org/tmp/Python32.tar.gz -O $PREFIX/Python32.tar.gz
67 tar xzf $PREFIX/Python32.tar.gz -C $PREFIX
68
69 # Create a dummy python3.pc file so that pkg-config finds Python 3.
70 mkdir -p $PREFIX/lib/pkgconfig
71 cat >$PREFIX/lib/pkgconfig/python3.pc <<EOF 
72 prefix=$PREFIX
73 exec_prefix=\${prefix}
74 libdir=\${exec_prefix}/lib
75 includedir=\${prefix}/include
76 Name: Python
77 Description: Python library
78 Version: 3.2
79 Libs: -L$PREFIX/Python32/libs -lpython32
80 Cflags: -I$PREFIX/Python32/include
81 EOF
82
83 # Download the Python 3.2.3 MSI installer (needed for NSIS runs).
84 wget -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \
85      -O $PREFIX/python-3.2.3.msi
86
87 # libusb0.dll (needs to be shipped with frontends)
88 wget -c http://$SF_MIRROR/project/libusb-win32/libusb-win32-releases/$VER_LIBUSB_WIN32/libusb-win32-bin-$VER_LIBUSB_WIN32.zip
89 unzip libusb-win32-bin-$VER_LIBUSB_WIN32.zip
90 cp -f libusb-win32-bin-$VER_LIBUSB_WIN32/bin/x86/libusb0_x86.dll $PREFIX/libusb0.dll
91
92 # libserialport
93 git clone git://sigrok.org/libserialport
94 cd libserialport
95 ./autogen.sh
96 PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
97 cd ..
98
99 # libsigrok
100 git clone git://sigrok.org/libsigrok
101 cd libsigrok
102 patch -p1 < ../../libsigrok_firmwaredir.patch
103 ./autogen.sh
104 PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
105 cd ..
106
107 # libsigrokdecode
108 git clone git://sigrok.org/libsigrokdecode
109 cd libsigrokdecode
110 ./autogen.sh
111 PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install
112 cd ..
113
114 # sigrok-firmware
115 git clone git://sigrok.org/sigrok-firmware
116 cd sigrok-firmware
117 ./autogen.sh
118 # Nothing gets cross-compiled here, we just need 'make install' basically.
119 ./configure --prefix=$PREFIX
120 make install
121 cd ..
122
123 # sigrok-firmware-fx2lafw
124 git clone git://sigrok.org/sigrok-firmware-fx2lafw
125 cd sigrok-firmware-fx2lafw
126 ./autogen.sh
127 # We're building the fx2lafw firmware on the host, no need to cross-compile.
128 ./configure --prefix=$PREFIX
129 make
130 make install
131 cd ..
132
133 # sigrok-cli
134 git clone git://sigrok.org/sigrok-cli
135 cd sigrok-cli
136 patch -p1 < ../../sigrok_cli_decodersdir.patch
137 ./autogen.sh
138 PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C && make install
139 makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi
140 cd ..
141
142 # PulseView
143 git clone git://sigrok.org/pulseview
144 cd pulseview
145 patch -p1 < ../../pulseview_linkfix.patch
146 patch -p1 < ../../pulseview_decodersdir.patch
147 PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_DECODE=y . && make install VERBOSE=1
148 makensis -DHOME=$HOME contrib/pulseview_cross.nsi
149 cd ..
150