X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=cross-compile%2Fmingw%2Fsigrok-cross-mingw;h=b38a111f3413e078c5a0d87e97f0de61e7c45178;hp=afc49921a9e51815a76dfc9fe063dc9d172c5b8c;hb=22838903fe2a494ef00e67f2428bce0c1ac63cc4;hpb=99344584ff585a253127a13c422af6d185ccbef9 diff --git a/cross-compile/mingw/sigrok-cross-mingw b/cross-compile/mingw/sigrok-cross-mingw index afc4992..b38a111 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 @@ -75,6 +77,17 @@ for opt in opt_flags: EOF chmod 755 $PREFIX/bin/python3-config +# Download the Python 3.2.3 MSI installer (needed for NSIS runs). +wget -c http://python.org/ftp/python/3.2.3/python-3.2.3.msi \ + -O $PREFIX/python-3.2.3.msi + +# libserialport +git clone git://sigrok.org/libserialport +cd libserialport +./autogen.sh +PKG_CONFIG_PATH_i686_pc_mingw32=$P ./configure $C $L && make install +cd .. + # libsigrok git clone git://sigrok.org/libsigrok cd libsigrok @@ -94,29 +107,14 @@ git clone git://sigrok.org/sigrok-cli cd sigrok-cli ./autogen.sh PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C && make install +makensis -DHOME=$HOME contrib/sigrok-cli_cross.nsi cd .. -## TODO: Doesn't fully work, yet. -## # sigrok-qt -## git clone git://sigrok.org/sigrok-qt -## cd sigrok-qt -## PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 qmake -spec win32-g++ -## make -## # TODO: make install -## cd .. - -# # sigrok-gtk -# git clone git://sigrok.org/sigrok-gtk -# cd sigrok-gtk -# ./autogen.sh -# PKG_CONFIG_PATH_i686_pc_mingw32=$P:$P2 ./configure $C && make install -# cd .. - # PulseView git clone git://sigrok.org/pulseview cd pulseview -# Temporary workaround: append (not prepend) "-llzma -llcms2" to the linker. -sed -i '224a \\tlist(APPEND PULSEVIEW_LINK_LIBS "-llzma -llcms2") # Quick hack' CMakeLists.txt +patch -p1 < ../../pulseview_linkfix.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 ..