Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
export PYTHON_CONFIG="python3-config"
;;
+cygwin)
+ export MAKE=make
+ export TAR=tar
+ export NPROC=nproc
+ export PYTHON="python3"
+ export PYTHON_CONFIG="python3-config"
+ rebase_dll=1
+ ;;
+
*)
export MAKE=make
export TAR=tar
# BUILD!
$MAKE -j "$($NPROC)" V=1
+# Force rebase DLL address mapping
+if [ "${rebase_dll:-}" == "1" ]; then
+ find . -name "*.dll" | xargs rebase -O -v
+fi
+
# Install in the workspace
$MAKE install DESTDIR="$WORKSPACE"