[PD-cvs] SF.net SVN: pure-data: [9546] sources/build-libs-on-mingw.sh

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Sat Mar 8 01:20:29 CET 2008


Revision: 9546
          http://pure-data.svn.sourceforge.net/pure-data/?rev=9546&view=rev
Author:   eighthave
Date:     2008-03-07 16:20:29 -0800 (Fri, 07 Mar 2008)

Log Message:
-----------
added fftw3 builds for both single and double precision (they have to be built separately on MinGW

Modified Paths:
--------------
    sources/build-libs-on-mingw.sh

Modified: sources/build-libs-on-mingw.sh
===================================================================
--- sources/build-libs-on-mingw.sh	2008-03-07 23:31:33 UTC (rev 9545)
+++ sources/build-libs-on-mingw.sh	2008-03-08 00:20:29 UTC (rev 9546)
@@ -144,19 +144,32 @@
 	 cd ..
 fi
 
-# fftw3
+# fftw3 single precision
 testfile=/usr/local/lib/libfftw3f.dll.a
 if [ -e "$testfile" ]; then 
 	 echo "$testfile exists, skipping..."
 else
 	 echo "Building everything for $testfile"
 	 cd fftw3
-	 ./configure --with-our-malloc16 --with-windows-f77-mangling --enable-shared --disable-static --enable-threads --with-combined-threads --enable-portable-binary --enable-float --enable-sse
+	 ./configure --with-our-malloc16 --with-windows-f77-mangling --enable-shared --enable-threads --with-combined-threads --enable-portable-binary --enable-float --enable-sse
 	 make
 	 make install
 	 cd ..
 fi
 
+# fftw3 double precision
+testfile=/usr/local/lib/libfftw3.dll.a
+if [ -e "$testfile" ]; then 
+	 echo "$testfile exists, skipping..."
+else
+	 echo "Building everything for $testfile"
+	 cd fftw3
+	 ./configure --with-our-malloc16 --with-windows-f77-mangling --enable-shared --enable-threads --with-combined-threads --enable-portable-binary --enable-sse2
+	 make
+	 make install
+	 cd ..
+fi
+
 #fftw2
 testfile=/usr/local/lib/libfftw.a
 if [ -e "$testfile" ]; then 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list