]> sigrok.org Git - sigrok-util.git/commitdiff
sigrok-cross-mingw: Switch to i686-w64-mingw32.static.posix.
authorUwe Hermann <redacted>
Thu, 17 Dec 2015 08:21:04 +0000 (09:21 +0100)
committerUwe Hermann <redacted>
Thu, 17 Dec 2015 15:45:13 +0000 (16:45 +0100)
This is a new MXE target that uses POSIX threads (and thus gives
us C++11 std::thread support, among other things) out of the box.

Using this, we no longer have to build gcc twice.

cross-compile/mingw/README
cross-compile/mingw/sigrok-cross-mingw

index 248af546f939a81855dda33142d834eecf2979c2..e6451249dc98bb780904b8007362bbc4d0b0231a 100644 (file)
@@ -41,20 +41,10 @@ Apply some fixes that are currently required for a proper build:
 
  $ patch -p1 < mxe_fixes.patch
 
-For now we need to build gcc and winpthreads in two steps. First:
+Build all required packages:
 
- $ make MXE_TARGETS=i686-w64-mingw32.static gcc winpthreads
-
-In src/gcc.mk change "--enable-threads=win32" to "--enable-threads=posix".
-
-Then build gcc again:
-
- $ make MXE_TARGETS=i686-w64-mingw32.static gcc
-
-We now have a system that supports C++11 std::thread. Now build the rest:
-
- $ make MXE_TARGETS=i686-w64-mingw32.static glib libzip libusb1 libftdi1 \
-   glibmm qt boost check
+ $ make MXE_TARGETS=i686-w64-mingw32.static.posix gcc glib libzip libusb1 \
+   libftdi1 glibmm qt boost check
 
 This will take a while.
 
index 66ce718509aa325077bb17e0360d8bef00a21979..8b30158cf38baa612349e969e850ea6c041f10f0 100755 (executable)
@@ -53,7 +53,7 @@ GIT_CLONE="git clone --depth=1"
 # We need to find tools in the toolchain.
 export PATH=$MXE/usr/bin:$PATH
 
-TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static"
+TOOLCHAIN_TRIPLET="$TARGET-w64-mingw32.static.posix"
 
 P="$PREFIX/lib/pkgconfig"
 P2="$MXE/usr/$TOOLCHAIN_TRIPLET/lib/pkgconfig"
@@ -62,9 +62,9 @@ CM="-DCMAKE_TOOLCHAIN_FILE=$MXE/usr/$TOOLCHAIN_TRIPLET/share/cmake/mxe-conf.cmak
 L="--disable-shared --enable-static"
 
 if [ $TARGET = "i686" ]; then
-       export PKG_CONFIG_PATH_i686_w64_mingw32_static="$P:$P2"
+       export PKG_CONFIG_PATH_i686_w64_mingw32_static_posix="$P:$P2"
 else
-       export PKG_CONFIG_PATH_x86_64_w64_mingw32_static="$P:$P2"
+       export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
 fi
 
 # Remove build directory contents (if any) and create a new build dir.