Changes between Version 7 and Version 8 of GdalOgrInPerl


Ignore:
Timestamp:
Jun 1, 2015, 12:23:30 AM (9 years ago)
Author:
Ari Jolma
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GdalOgrInPerl

    v7 v8  
    77Geo::GDAL is a building block of the [https://github.com/ajolma/geoinformatica Geoinformatica] stack.
    88
    9 [wiki:Perl GDAL Perl Developer hints page]
     9Typically you enable building a foreign function interface ("bindings") to GDAL for a specific supported language by using the option --with-perl (replace "perl" with your favorite language) with configure. The effect of this is that during the build process {{{cd swig; make build}}} is issued and all specified interfaces are built by {{{make build}}} in respective library (swig/perl in the case of Perl).
     10
     11The Perl bindings for GDAL are generated from [wiki:SWIG GDAL SWIG interface] files with SWIG. The bindings are a set of .c and .cpp files and other files whose type depends on the language. In the case of Perl, these SWIG generated files are not stored in the repository. The bindings are generated by {{{make generate}}}. In the case of Perl, {{{make build}}} falls back to do {{{make generate}}} first if a wrapper file does not exist.
     12
     13To rebuild wrappers make sure to remove the old ones by {{{make veryclean}}} first.
     14
     15The Perl bindings can be tested by {{{make test}}}.
     16
     17The Perl bindings can be installed by {{{make install}}}.