Changes between Version 97 and Version 98 of DevWikiWinMingW64
- Timestamp:
- 03/05/12 09:36:56 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingW64
v97 v98 99 99 cd gdal-1.9.0 100 100 # if you have single toolchain (not a cross compiling chain no need to specify --host, --target, --build) 101 ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/c/projects/gdal/rel- gdal-1.9.0w64101 ./configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/c/projects/gdal/rel-1.9.0w64 102 102 cd apps 103 103 make gdal-config 104 104 cd .. 105 105 make && make install 106 cd /c/projects/gdal/rel- gdal-1.9.0w64/bin106 cd /c/projects/gdal/rel-1.9.0w64/bin 107 107 strip *.dll 108 108 }}} … … 148 148 {{{ 149 149 cd /c/projects/geos 150 tar xjf geos-3.3. 2.tar.bz2151 cd geos-3.3. 2152 ./configure -- prefix=/c/projects/geos/rel-3.3.2 --host=i686-w64-mingw32150 tar xjf geos-3.3.3.tar.bz2 151 cd geos-3.3.3 152 ./configure --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --prefix=/c/projects/geos/rel-3.3.3w64 | tee /c/geos_configure_3.3.log 153 153 make 154 154 make install … … 156 156 To strip all the debug info weight from the libgeos DLL files, run 157 157 {{{ 158 # strip /c/projects/bin/geos/rel-3.3.2/*.dll158 strip /c/projects/bin/geos/rel-3.3.3/*.dll 159 159 }}} 160 160