Changes between Version 24 and Version 25 of DevWikiWinMingW64


Ignore:
Timestamp:
Apr 13, 2011, 5:45:19 AM (13 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v24 v25  
    7575}}}
    7676
     77== 4. Compiling GEOS ==
    7778
     79Download latest GEOS source from http://trac.osgeo.org/geos/ either the http://download.osgeo.org/geos/geos-3.3.0.tar.bz2 or http://download.osgeo.org/geos/geos-svn.tar.bz2 and copy to c:\projects\geos .
     80{{{
     81cd /c/projects/geos
     82bzip2 -d -c geos-svn.tar.bz2 | tar xvf -
     83./configure --prefix=/c/projects/geos/rel-3.3.0 --build=i686-w64-mingw32 --host=i686-w64-mingw32 --target=i686-w64-mingw32
     84make
     85make install
     86}}}
     87To strip all the debug info weight from the libgeos DLL files, run
     88{{{
     89# strip /c/projects/bin/geos/rel-3.3.0/*.dll
     90}}}
     91