Changes between Version 139 and Version 140 of DevWikiWinMingW64
- Timestamp:
- 07/03/12 04:32:43 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingW64
v139 v140 199 199 -- follow instructions in [http://www.gaia-gis.it/spatialite-3.0.0-BETA/mingw64_how_to.html#libgeos] 200 200 {{{ 201 export GEOS_VER=3.3.5 201 202 cd /c/projects/geos 202 tar xjf geos- 3.3.3.tar.bz2203 cd geos- 3.3.3204 ./configure --host=x86_64-w64-mingw32 --prefix=/c/projects/geos/rel- 3.3.3w64 | tee /c/geos_configure_3.3.log203 tar xjf geos-${GEOS_VER}.tar.bz2 204 cd geos-${GEOS_VER} 205 ./configure --host=x86_64-w64-mingw32 --prefix=/c/projects/geos/rel-${GEOS_VER}w64 | tee /c/geos_configure_3.3.log 205 206 make 206 207 make install … … 208 209 To strip all the debug info weight from the libgeos DLL files, run 209 210 {{{ 210 strip /c/projects/bin/geos/rel- 3.3.3w64/*.dll211 strip /c/projects/bin/geos/rel-${GEOS_VER}w64/*.dll 211 212 }}} 212 213