aboutsummaryrefslogtreecommitdiff
path: root/INSTALL.txt
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-06-09 19:07:13 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-06-09 19:07:13 +0000
commit1827ed6ffed399c7c26586698544eb5fb58c489f (patch)
treeaaff0452241706e643d8d208883dd3d17445baab /INSTALL.txt
parentf9a3736e50867d9be714e470597078bcb86f3669 (diff)
more support for mingw (just give the "host" at configure-time)
svn path=/trunk/externals/iem/iemmatrix/; revision=3151
Diffstat (limited to 'INSTALL.txt')
-rw-r--r--INSTALL.txt9
1 files changed, 1 insertions, 8 deletions
diff --git a/INSTALL.txt b/INSTALL.txt
index de8f2eb..568389e 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -18,17 +18,10 @@ Installation/Compilation instructions for "iemmatrix"
CrossCompilation for w32 with MinGW (http://www.mingw.org) on linux-systems
you need a cross-compilation tool-chain for windows (there is a debian-package mingw32)
- set the CC-environment-variable to the cross-compiler and export it
- set the STRIP-environment-variable to the strip-version that comes with the toolchain and export it
- set the CFLAGS-environment-variable to "-mms-bitfields" and export it (this is highly necessary to
- run the external if pd was compiled with M$-vc)
run "./configure" and specify the path to your "m_pd.h" (with --includedir) and to your "pd.lib" (with --libdir)
don't forget to override the default extension ("pd_linux" on linux-systems) with the more appropriate "dll".
on bash this looks like:
- % export CC=i586-mingw32msvc-cc
- % export STRIP=i586-mingw32msvc-strip
- % export CFLAGS=-mms-bitfields
- % ./configure --includedir=/path/to/w32-pd/src/ -libdir=/path/to/w32-pd/bin/ -with-extension=dll
+ % ./configure --with-extension=dll --host=i586-mingw32msvc --includedir=/path/to/w32-pd/src/ -libdir=/path/to/w32-pd/bin/
now run "make" and enjoy.