Changes between Version 76 and Version 77 of DevWikiWinMingW64


Ignore:
Timestamp:
Feb 29, 2012, 11:01:11 PM (12 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v76 v77  
    9090}}}
    9191
     92== GDAL ==
     93{{{
     94cd /c/projects
     95mkdir gdal
     96cd gdal
     97wget http://download.osgeo.org/gdal/gdal-1.9.0.tar.gz
     98tar xvfz gdal-1.9.0.tar.gz
     99cd gdal-1.9.0
     100# if you have single toolchain (not a cross compiling chain no need to specify --host, --target, --build)
     101./configure --prefix=/c/projects/gdal/rel-gdal-1.9.0w64
     102cd apps
     103make gdal-config
     104cd ..
     105make && make install
     106}}}
    92107
    93108== 4. Compiling GEOS ==