]> sigrok.org Git - sigrok-util.git/blob - cross-compile/msys2/sigrok-native-msys2
sigrok-cross-android: Bump VER_SIGROK_FIRMWARE_FX2LAFW to 0.1.6.
[sigrok-util.git] / cross-compile / msys2 / sigrok-native-msys2
1 #!/bin/sh
2 ##
3 ## This file is part of the sigrok-util project.
4 ##
5 ## Copyright (C) 2016-2018 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, see <http://www.gnu.org/licenses/>.
19 ##
20
21 set -e
22
23 # The base path prefix where the compiled packages will be installed.
24 PREFIXBASE=$HOME/sr_msys2
25
26 # The base path prefix where to download files to and where to build packages.
27 BUILDBASE=./build
28
29 # The $PREFIX subdir where the libsigrok Python bindings will be installed.
30 PYBASE=lib/python2.7/site-packages
31
32 # Edit this to control verbose build output.
33 # V="V=1 VERBOSE=1"
34
35 # Edit this to enable/disable/modify parallel compiles.
36 PARALLEL="-j 2"
37
38 # Edit this to enable/disable debug builds.
39 DEBUG=0
40
41 # You usually don't need to change anything below this line.
42
43 # -----------------------------------------------------------------------------
44
45 # The build target type: "i686" (32bit) or "x86_64" (64bit).
46 # This is selected based on which MSYS2 shell is being used to do the build.
47 TARGET=$MSYSTEM_CARCH
48
49 VER_SIGROK_FIRMWARE_FX2LAFW=0.1.6
50
51 WGET="wget -c --quiet"
52 GIT_CLONE="git clone --depth=1"
53
54 REPO_BASE="git://sigrok.org"
55
56 # Construct the build and install directory pathnames.
57 if [ $TARGET = "i686" ]; then
58         SUFFIX="32"
59 else
60         SUFFIX="64"
61 fi
62 if [ $DEBUG = 1 ]; then
63         # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
64         BUILD_TYPE="Debug"
65         PREFIX=$PREFIXBASE"_debug_"$SUFFIX
66         BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
67 else
68         BUILD_TYPE="Release"
69         PREFIX=$PREFIXBASE"_release_"$SUFFIX
70         BUILDDIR=$BUILDBASE"_release_"$SUFFIX
71 fi
72
73 PYPATH=$PREFIX/$PYBASE
74
75 # -----------------------------------------------------------------------------
76
77 P="$PREFIX/lib/pkgconfig"
78 C="$C --prefix=$PREFIX"
79 L="--disable-shared --enable-static"
80
81 # Path to Qt binaries (needed for cmake to find the Qt libs).
82 PATH="/mingw32/qt5-static/bin:$PATH"
83
84 W="mingw-w64-$TARGET"
85
86 mkdir -p $PYPATH
87
88 # Remove build directory contents (if any) and create a new build dir.
89 rm -rf $BUILDDIR
90 mkdir $BUILDDIR
91 cd $BUILDDIR
92
93 # -----------------------------------------------------------------------------
94
95 if [ "x$1" = "xprepare" ]; then
96   # Update package list, install/update all requirements.
97   pacman -Sy
98   pacman -S \
99         autoconf automake autoconf-archive libtool make pkg-config wget patch \
100         $W-toolchain $W-glib2 $W-glibmm $W-libusb $W-libftdi $W-check $W-boost \
101         $W-libzip $W-doxygen $W-python3 $W-python3-numpy $W-python3-gobject \
102         $W-python3-setuptools $W-swig $W-qt5-static $W-cmake $W-nsis
103   exit
104 fi
105
106 # -----------------------------------------------------------------------------
107
108 # libusb
109 $GIT_CLONE git://github.com/dickens/libusb -b event-abstraction-v4
110 cd libusb
111 ./bootstrap.sh
112 ./configure $C $L
113 make -j1 $V
114 make install $V
115 cd ..
116
117 # libserialport
118 $GIT_CLONE $REPO_BASE/libserialport
119 cd libserialport
120 ./autogen.sh
121 mkdir build
122 cd build
123 ../configure $C $L
124 $SB make $PARALLEL $V
125 make install $V
126 cd ../..
127
128 # libsigrok
129 $GIT_CLONE $REPO_BASE/libsigrok
130 cd libsigrok
131 ./autogen.sh
132 mkdir build
133 cd build
134 PKG_CONFIG_PATH=$P PYTHON=python3 ../configure $C $L --disable-python
135 $SB make $PARALLEL $V
136 PYTHONPATH=$PYPATH $SB make install $V
137 # $SB make check $V # TODO
138 cd ../..
139
140 # libsigrokdecode
141 $GIT_CLONE $REPO_BASE/libsigrokdecode
142 cd libsigrokdecode
143 ./autogen.sh
144 mkdir build
145 cd build
146 PKG_CONFIG_PATH=$P ../configure $C $L
147 $SB make $PARALLEL $V
148 make install $V
149 # $SB make check $V # TODO
150 cd ../..
151
152 # sigrok-firmware
153 $GIT_CLONE $REPO_BASE/sigrok-firmware
154 cd sigrok-firmware
155 ./autogen.sh
156 mkdir build
157 cd build
158 # Nothing gets cross-compiled here, we just need 'make install' basically.
159 ../configure $C
160 make install $V
161 cd ../..
162
163 # sigrok-firmware-fx2lafw
164 $WGET http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-$VER_SIGROK_FIRMWARE_FX2LAFW.tar.gz
165 tar xfz sigrok-firmware-fx2lafw-bin-$VER_SIGROK_FIRMWARE_FX2LAFW.tar.gz
166 cd sigrok-firmware-fx2lafw-bin-$VER_SIGROK_FIRMWARE_FX2LAFW
167 cp *.fw $PREFIX/share/sigrok-firmware/
168 cd ..
169
170 # TODO: Doesn't build, libsigrokdecode linking errors.
171 # # sigrok-cli
172 # $GIT_CLONE $REPO_BASE/sigrok-cli
173 # cd sigrok-cli
174 # ./autogen.sh
175 # mkdir build
176 # cd build
177 # PKG_CONFIG_PATH=$P ../configure $C $L
178 # $SB make $PARALLEL $V
179 # make install $V
180 # # makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi # TODO
181 # cd ../..
182
183 # TODO: Doesn't build, various linking errors.
184 # PulseView
185 $GIT_CLONE $REPO_BASE/pulseview
186 cd pulseview
187 mkdir build
188 cd build
189 PKG_CONFIG_PATH=$P $SB cmake \
190         -G "Unix Makefiles" \
191         -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
192         -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
193         -DDISABLE_WERROR=y \
194         -DENABLE_TESTS=n \
195         ..
196 $SB make $PARALLEL $V
197 make install $V
198 # $SB make test $V # TODO
199 # makensis -DHOME=$HOME contrib/pulseview_cross.nsi # TODO
200 cd ../..