Changes between Version 76 and Version 77 of DevWikiWinMingW64


Ignore:
Timestamp:
02/29/12 23:01:11 (13 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified 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 ==