Changes between Version 142 and Version 143 of DevWikiWinMingW64
- Timestamp:
- 07/06/12 05:05:57 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingW64
v142 v143 206 206 {{{ 207 207 export GEOS_VER=3.3.5 208 cd /c/projects/geos208 cd ${PROJECTS}/geos 209 209 tar xjf geos-${GEOS_VER}.tar.bz2 210 210 cd geos-${GEOS_VER} 211 ./configure --host=x86_64-w64-mingw32 --prefix= /c/projects/geos/rel-${GEOS_VER}w64 | tee /c/geos_configure_3.3.log211 ./configure --host=x86_64-w64-mingw32 --prefix=${PROJECTS}/geos/rel-${GEOS_VER}w64 | tee /c/geos_configure_3.3.log 212 212 make 213 213 make install … … 215 215 To strip all the debug info weight from the libgeos DLL files, run 216 216 {{{ 217 strip /c/projects/bin/geos/rel-${GEOS_VER}w64/*.dll217 strip ${PROJECTS}/bin/geos/rel-${GEOS_VER}w64/*.dll 218 218 }}} 219 219 … … 229 229 tar xvfz libiconv-1.13.1.tar.gz 230 230 cd libiconv-1.13.1 231 ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix= /c/projects/rel-libiconv-1.13.1w64231 ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=${PROJECTS}/rel-libiconv-1.13.1w64 232 232 make 233 233 make install