X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=cross-compile%2Fmingw%2Fsigrok-cross-mingw;h=b35a0040b5ae3511a8856aa48efbe3edb0bcc5d8;hp=6b6c2ac4c4c1fe79ec3c21c148dc795b6ba4c91f;hb=d0793c360966c4d6ebabd7a40674f9882956a75f;hpb=57d084199544bbd02639ebfc561fa33feed76552 diff --git a/cross-compile/mingw/sigrok-cross-mingw b/cross-compile/mingw/sigrok-cross-mingw index 6b6c2ac..b35a004 100755 --- a/cross-compile/mingw/sigrok-cross-mingw +++ b/cross-compile/mingw/sigrok-cross-mingw @@ -19,6 +19,8 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## +set -e + # The path where your MXE directory is located. MXE=$HOME/mxe-git @@ -32,6 +34,12 @@ BUILDDIR=./sr_mingw_build # ----------------------------------------------------------------------------- +SF_MIRROR=switch.dl.sourceforge.net + +VER_LIBUSBX=1.0.17 + +# ----------------------------------------------------------------------------- + # We need to find tools in the toolchain and in the install directory. export PATH=$PREFIX/bin:$MXE/usr/bin:$PATH @@ -79,6 +87,13 @@ chmod 755 $PREFIX/bin/python3-config wget -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \ -O $PREFIX/python-3.2.3.msi +# libusbx +wget http://$SF_MIRROR/project/libusbx/releases/$VER_LIBUSBX/source/libusbx-$VER_LIBUSBX.tar.bz2 +tar xfj libusbx-$VER_LIBUSBX.tar.bz2 +cd libusbx-$VER_LIBUSBX +PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install +cd .. + # libserialport git clone git://sigrok.org/libserialport cd libserialport @@ -111,8 +126,7 @@ cd .. # PulseView git clone git://sigrok.org/pulseview cd pulseview -# Temporary workaround: append (not prepend) "-llzma -llcms2" to the linker. -sed -i '247a \\tlist(APPEND PULSEVIEW_LINK_LIBS "-llzma -llcms2") # Quick hack' CMakeLists.txt +patch -p1 < ../../pulseview.patch PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 cmake $CM -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y . && make install VERBOSE=1 makensis -DHOME=$HOME contrib/pulseview_cross.nsi cd ..