]> sigrok.org Git - sigrok-util.git/commitdiff
mingw/msys2: Make build directory names reflect debug/release and 32/64
authorCenkron <redacted>
Tue, 16 Jan 2018 21:35:26 +0000 (15:35 -0600)
committerUwe Hermann <redacted>
Tue, 16 Jan 2018 22:44:06 +0000 (23:44 +0100)
For mingw and msys2 builds, both the install and build directory names
now reflect the build characteristics.
This makes it possible to do debug and release builds simultaneously.

cross-compile/mingw/sigrok-cross-mingw
cross-compile/msys2/sigrok-native-msys2

index bae165f0a2d4045761aaf887c236f3b03b7ed997..5cf478fc9620d1da466b5961e729b64755ab9481 100755 (executable)
@@ -2,7 +2,7 @@
 ##
 ## This file is part of the sigrok-util project.
 ##
 ##
 ## This file is part of the sigrok-util project.
 ##
-## Copyright (C) 2013-2017 Uwe Hermann <uwe@hermann-uwe.de>
+## Copyright (C) 2013-2018 Uwe Hermann <uwe@hermann-uwe.de>
 ##
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
 ##
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -26,11 +26,11 @@ TARGET="i686"
 # The path where your MXE directory is located.
 MXE=$HOME/mxe-git
 
 # The path where your MXE directory is located.
 MXE=$HOME/mxe-git
 
-# The path where the cross-compiled packages will be installed.
-PREFIX=$HOME/sr_mingw
+# The base path prefix where the cross-compiled packages will be installed.
+PREFIXBASE=$HOME/sr_mingw
 
 
-# The path where to download files to and where to build packages.
-BUILDDIR=./build
+# The base path prefix where to download files to and where to build packages.
+BUILDBASE=./build
 
 # Edit this to control verbose build output.
 # V="V=1 VERBOSE=1"
 
 # Edit this to control verbose build output.
 # V="V=1 VERBOSE=1"
@@ -52,6 +52,23 @@ GIT_CLONE="git clone --depth=1"
 
 REPO_BASE="git://sigrok.org"
 
 
 REPO_BASE="git://sigrok.org"
 
+# Construct the build and install directory pathnames.
+if [ $TARGET = "i686" ]; then
+       SUFFIX="32"
+else
+       SUFFIX="64"
+fi
+if [ $DEBUG = 1 ]; then
+       # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
+       BUILD_TYPE="Debug"
+       PREFIX=$PREFIXBASE"_debug_"$SUFFIX
+       BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
+else
+       BUILD_TYPE="Release"
+       PREFIX=$PREFIXBASE"_release_"$SUFFIX
+       BUILDDIR=$BUILDBASE"_release_"$SUFFIX
+fi
+
 # -----------------------------------------------------------------------------
 
 # We need to find tools in the toolchain.
 # -----------------------------------------------------------------------------
 
 # We need to find tools in the toolchain.
@@ -72,13 +89,6 @@ else
        export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
 fi
 
        export PKG_CONFIG_PATH_x86_64_w64_mingw32_static_posix="$P:$P2"
 fi
 
-if [ $DEBUG = 1 ]; then
-       # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
-       BUILD_TYPE="Debug"
-else
-       BUILD_TYPE="Release"
-fi
-
 # Remove build directory contents (if any) and create a new build dir.
 rm -rf $BUILDDIR
 mkdir $BUILDDIR
 # Remove build directory contents (if any) and create a new build dir.
 rm -rf $BUILDDIR
 mkdir $BUILDDIR
@@ -219,7 +229,7 @@ $CMAKE \
        -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
        -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
        -DDISABLE_WERROR=y \
        -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
        -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
        -DDISABLE_WERROR=y \
-       -DENABLE_TESTS=y
+       -DENABLE_TESTS=y \
        .
 make $PARALLEL $V
 if [ $DEBUG = 1 ]; then
        .
 make $PARALLEL $V
 if [ $DEBUG = 1 ]; then
index cc3b1c6fa2e498b6c4ce760cd1f2bb2d11ca3a15..98b248728d7041e1e9ba4332f8aa01dfedbc4fed 100755 (executable)
@@ -2,7 +2,7 @@
 ##
 ## This file is part of the sigrok-util project.
 ##
 ##
 ## This file is part of the sigrok-util project.
 ##
-## Copyright (C) 2016 Uwe Hermann <uwe@hermann-uwe.de>
+## Copyright (C) 2016-2018 Uwe Hermann <uwe@hermann-uwe.de>
 ##
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
 ##
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
 
 set -e
 
 
 set -e
 
-# Build target: "i686" (32bit) or "x86_64" (64bit).
-TARGET="i686"
+# The base path prefix where the compiled packages will be installed.
+PREFIXBASE=$HOME/sr_msys2
 
 
-# The path where the compiled packages will be installed.
-PREFIX=$HOME/sr_msys2
+# The base path prefix where to download files to and where to build packages.
+BUILDBASE=./build
 
 
-# The path where to download files to and where to build packages.
-BUILDDIR=./build
-
-# The path where the libsigrok Python bindings will be installed.
-PYPATH=$PREFIX/lib/python2.7/site-packages
+# The $PREFIX subdir where the libsigrok Python bindings will be installed.
+PYBASE=lib/python2.7/site-packages
 
 # Edit this to control verbose build output.
 # V="V=1 VERBOSE=1"
 
 # Edit this to control verbose build output.
 # V="V=1 VERBOSE=1"
@@ -38,20 +35,45 @@ PYPATH=$PREFIX/lib/python2.7/site-packages
 # Edit this to enable/disable/modify parallel compiles.
 PARALLEL="-j 2"
 
 # Edit this to enable/disable/modify parallel compiles.
 PARALLEL="-j 2"
 
+# Edit this to enable/disable debug builds.
+DEBUG=0
+
 # You usually don't need to change anything below this line.
 
 # -----------------------------------------------------------------------------
 
 # You usually don't need to change anything below this line.
 
 # -----------------------------------------------------------------------------
 
+# The build target type: "i686" (32bit) or "x86_64" (64bit).
+# This is selected based on which MSYS2 shell is being used to do the build.
+TARGET=$MSYSTEM_CARCH
+
 VER_SIGROK_FIRMWARE_FX2LAFW=0.1.3
 
 VER_SIGROK_FIRMWARE_FX2LAFW=0.1.3
 
-# -----------------------------------------------------------------------------
+WGET="wget -c --quiet"
+GIT_CLONE="git clone --depth=1"
+
+REPO_BASE="git://sigrok.org"
 
 
+# Construct the build and install directory pathnames.
+if [ $TARGET = "i686" ]; then
+       SUFFIX="32"
+else
+       SUFFIX="64"
+fi
 if [ $DEBUG = 1 ]; then
 if [ $DEBUG = 1 ]; then
+       # CFLAGS/CXXFLAGS contains "-g" per default for autotools projects.
        BUILD_TYPE="Debug"
        BUILD_TYPE="Debug"
+       PREFIX=$PREFIXBASE"_debug_"$SUFFIX
+       BUILDDIR=$BUILDBASE"_debug_"$SUFFIX
 else
        BUILD_TYPE="Release"
 else
        BUILD_TYPE="Release"
+       PREFIX=$PREFIXBASE"_release_"$SUFFIX
+       BUILDDIR=$BUILDBASE"_release_"$SUFFIX
 fi
 
 fi
 
+PYPATH=$PREFIX/$PYBASE
+
+# -----------------------------------------------------------------------------
+
 P="$PREFIX/lib/pkgconfig"
 C="$C --prefix=$PREFIX"
 L="--disable-shared --enable-static"
 P="$PREFIX/lib/pkgconfig"
 C="$C --prefix=$PREFIX"
 L="--disable-shared --enable-static"
@@ -61,10 +83,7 @@ PATH="/mingw32/qt5-static/bin:$PATH"
 
 W="mingw-w64-$TARGET"
 
 
 W="mingw-w64-$TARGET"
 
-WGET="wget -c --quiet"
-GIT_CLONE="git clone --depth=1"
-
-REPO_BASE="git://sigrok.org"
+mkdir -p $PYPATH
 
 # Remove build directory contents (if any) and create a new build dir.
 rm -rf $BUILDDIR
 
 # Remove build directory contents (if any) and create a new build dir.
 rm -rf $BUILDDIR
@@ -107,7 +126,6 @@ make install $V
 cd ../..
 
 # libsigrok
 cd ../..
 
 # libsigrok
-mkdir -p $PYPATH
 $GIT_CLONE $REPO_BASE/libsigrok
 cd libsigrok
 ./autogen.sh
 $GIT_CLONE $REPO_BASE/libsigrok
 cd libsigrok
 ./autogen.sh
@@ -173,7 +191,7 @@ PKG_CONFIG_PATH=$P $SB cmake \
        -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
        -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
        -DDISABLE_WERROR=y \
        -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
        -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
        -DDISABLE_WERROR=y \
-       -DENABLE_TESTS=n
+       -DENABLE_TESTS=n \
        ..
 $SB make $PARALLEL $V
 make install $V
        ..
 $SB make $PARALLEL $V
 make install $V