Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/avrdude/tools/build-mingw32.sh')
-rw-r--r--src/avrdude/tools/build-mingw32.sh54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/avrdude/tools/build-mingw32.sh b/src/avrdude/tools/build-mingw32.sh
new file mode 100644
index 000000000..2d9e11261
--- /dev/null
+++ b/src/avrdude/tools/build-mingw32.sh
@@ -0,0 +1,54 @@
+#! /bin/sh
+
+# ----------------------------------------------------------------------------
+# "THE BEER-WARE LICENSE" (Revision 42):
+# Joerg Wunsch wrote this file. As long as you retain this notice you
+# can do whatever you want with this stuff. If we meet some day, and you think
+# this stuff is worth it, you can buy me a beer in return.
+# ----------------------------------------------------------------------------
+
+# Script to cross-compile a MinGW32 executable under unixish host.
+# Run this script from within the tools/ subdirectory.
+# Override MINGW32_PREFIX and LIBUSB_PREFIX from the commandline
+# when invoking the script, like
+#
+# env LIBUSB_PREFIX="$HOME/dos/ProgramFiles/LibUSB-Win32" ./build-mingw32.sh
+#
+# The LibUSB-Win32 package is shipped as a self-installing
+# executable; it can be unpacked using Wine, and typically
+# extracts into the Wine environment.
+#
+# libelf can be cross-compiled, and installed into the MinGW32
+# target environment if desired.
+
+MINGW32_PREFIX=${MINGW32_PREFIX:-/usr/local/mingw32}
+LIBUSB_PREFIX=${LIBUSB_PREFIX:-/WINDOWS/ProgramFiles/LibUSB-Win32}
+
+for CC in mingw32-gcc i686-w64-mingw32-gcc i586-mingw32msvc-gcc
+do
+ touch foo.c
+ if ${CC} -c foo.c 2> /dev/null
+ then
+ rm -f foo.*
+ break
+ fi
+done
+tgt=$(expr "$CC" : "\(.*\)-gcc")
+
+BUILDDIR=build-mingw32
+mkdir -p ${BUILDDIR} || { echo "Cannot create build dir $BUILDDIR"; exit 1; }
+
+cd ${BUILDDIR} || { echo "Cannot chdir to $BUILDDIR"; exit 1; }
+
+LDFLAGS="-L${MINGW32_PREFIX}/lib -L${LIBUSB_PREFIX}/lib/gcc"
+CPPFLAGS="-I${MINGW32_PREFIX}/include -I${LIBUSB_PREFIX}/include"
+
+env \
+ CC="${CC}" \
+ CPPFLAGS="${CPPFLAGS}" \
+ LDFLAGS="${LDFLAGS}" \
+ ../../configure \
+ --host=$(../../config.guess) \
+ --target=${tgt}
+
+make all