comparison README.MacOS @ 12419:a01af8355c46

README.MacOS: Fix FFTW CCFLAGS.
author Ben Abbott <bpabbott@mac.com>
date Tue, 08 Feb 2011 19:36:54 -0500
parents 88a8248f5b97
children 99477f7ad5f9
comparison
equal deleted inserted replaced
12418:b914e8125f1b 12419:a01af8355c46
98 make install 98 make install
99 99
100 * fftw3: Available from http://www.fftw.org/download.html 100 * fftw3: Available from http://www.fftw.org/download.html
101 101
102 export F77="/usr/bin/gfortran" 102 export F77="/usr/bin/gfortran"
103 export CFLAGS="-m32" 103 export CFLAGS="-arch i686 -arch x86_64"
104 export FFLAGS="$CFLAGS" 104 export FFLAGS="$CFLAGS"
105 export LDFLAGS="$CFLAGS" 105 export LDFLAGS="$CFLAGS"
106 ./configure --disable-dependency-tracking 106 ./configure --disable-dependency-tracking
107 make 107 make
108 sudo make install 108 sudo make install
109 make clean 109 make clean
110 ./configure --enable-float --disable-dependency-tracking 110 ./configure --enable-float --disable-dependency-tracking
111 make 111 make
112 sudo make install 112 sudo make install
113
114 For a 64bit build, the CFLAGS must be modified.
115
116 export CFLAGS="-arch i686 -arch x86_64"
117 113
118 * blas/lapack 114 * blas/lapack
119 115
120 - For 64 bit, a non-Xcode 64 bit Atlas may be used. Alternatively, 116 - For 64 bit, a non-Xcode 64 bit Atlas may be used. Alternatively,
121 a wrapper for Apple's vecLib framework may be used. 117 a wrapper for Apple's vecLib framework may be used.