Changes between Version 4 and Version 5 of BuildingOnWindows


Ignore:
Timestamp:
Apr 27, 2007, 8:17:00 PM (17 years ago)
Author:
warmerdam
Comment:

added prebuilt libraries topic.

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnWindows

    v4 v5  
    22
    33Windows CE is also supported by an alternate set of build files. See [wiki:WindowsCE GDAL for Windows CE] for details.
     4
     5= Prebuild Libraries =
     6
     7A prebuilt GDAL 1.4.1 library is available at:
     8
     9  http://download.osgeo.org/gdal/win32/gdalwin32dev141.zip
     10
     11This should be unpacked on top of the executable package which includes the gdal13.dll:
     12
     13  http://download.osgeo.org/gdal/win32/gdalwin32exe141.zip
     14
     15The ''dev'' package includes:
     16* Include files in the gdalwin32-1.4.1\include directory.
     17* An release (/MD /Ox) DLL (bin\gdal14.dll) and stub library (lib\gdal_i.lib).
     18* A debug (/MDd /Zi) DLL (bin\gdal14D.dll), stub library (lib\gdal_iD.lib) and debug info file (bin\gdal14D.pdb).
     19
     20The DLL and stub libraries are built with Visual Studio.NET 2003 (VC 7.1), which is likely required for any use of the C++ API.  The libraries should be compatible with any win32 C/C++ compiler if only the GDAL/OGR C API is used.
     21
     22= Building From Source =
    423
    524For command line builds you will normally have to have run the VCVAR32.BAT script that comes with the compiler.  For VC 6.x this might be found at:
     
    104123GDAL_DRIVER_PATH folder (you will need to explicitly set this environment variable to allow GDAL to find its plugin drivers).  Your next gdalinfo
    105124or gdal_translate (or any other GDAL calls) should now be able to see the driver when it goes through the driver registration process.
     125