summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2007-10-30 23:42:02 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2007-10-30 23:42:02 +0000
commite463bbab4f3dddccafc7cd51e645abd59a92c0e2 (patch)
tree8939775fb2dc3b6293513ed97aede5a038fef399 /Tools
parentb9fdc908dbda47c83314c3ed80f8f99d9a730095 (diff)
downloadswig-e463bbab4f3dddccafc7cd51e645abd59a92c0e2.tar.gz
Add support for cross compilation of Windows build from Linux
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10081 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/mkwindows.sh33
1 files changed, 28 insertions, 5 deletions
diff --git a/Tools/mkwindows.sh b/Tools/mkwindows.sh
index 98f6c0aa2..4f4081798 100755
--- a/Tools/mkwindows.sh
+++ b/Tools/mkwindows.sh
@@ -1,9 +1,12 @@
#!/bin/sh
-# Build Windows distribution (swigwin-1.3.x.zip) -- requires running in a mingw environment.
+# Build Windows distribution (swigwin-1.3.x.zip) -- requires running in a MinGW environment or on Linux using MinGW cross compiler
# path to zip program
-zip=/c/cygwin/bin/zip
+zip=
+
+# special options for configure
+configureoptions=
if test x$1 != x; then
version=$1
@@ -14,10 +17,29 @@ if test x$1 != x; then
else
echo "Usage: mkwindows.sh version [zip]"
echo " version should be 1.3.x"
- echo " zip is full path to zip program - default is /c/cygwin/bin/zip"
+ echo " zip is full path to zip program - default is /c/cygwin/bin/zip on MinGW, zip on Linux"
exit 1
fi
+uname=`uname -a`
+mingw=`echo "$uname" | grep -i mingw`
+linux=`echo "$uname" | grep -i linux`
+if test "$mingw"; then
+ echo "Building on MinGW";
+ zip=/c/cygwin/bin/zip
+else
+ if test "$linux"; then
+ echo "Building on Linux"
+ if test x$zip = x; then
+ zip=zip
+ configureoptions="--host=i586-mingw32msvc --build=i686-linux"
+ fi
+ else
+ echo "Unknown platform. Requires either Linux or MinGW."
+ exit 1;
+ fi
+fi
+
swigbasename=swig-$version
swigwinbasename=swigwin-$version
tarball=$swigbasename.tar.gz
@@ -37,9 +59,10 @@ if test -f "$tarball"; then
if test -d $swigbasename; then
mv $swigbasename $swigwinbasename
tar -zxf ../$tarball
- echo "Running configure..."
+ confoptions="$configureoptions CXXFLAGS=-O2 CFLAGS=-O2"
+ echo Running configure $confoptions
cd $swigbasename
- ./configure CXXFLAGS="-O2" CFLAGS="-O2"
+ ./configure $confoptions
echo "Compiling (quietly)..."
make > build.log
echo "Simple check to see if swig.exe runs..."