Changes between Version 18 and Version 19 of DevWikiWinMingW64_21


Ignore:
Timestamp:
May 2, 2013, 10:21:58 PM (11 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64_21

    v18 v19  
    44If you want to get to the last step fast to immediately start compiling PostGIS without having to compile the dependencies,
    55you can download our prepared mingw64+msys build environment which you can download from  [http://www.bostongis.com/postgisstuff/ming64.zip] and for 32-bit (for PostgreSQL 9.2+ (32-bit 9.1 and below have to use old msys chain) [http://www.bostongis.com/postgisstuff/ming32.zip]
     6Then you just extract the zip so you have ming32 and or ming64 on your C:\ming32, C:\ming64 and launch the corresponding msys\msys.bat
    67
    78If you want to start with your own mingw64 install and then add additional items refer to [wiki:DevWikiMingW64_Setup]
    8 == 3.b create project folders ==
     9== variables used ==
     10For building we always have these variables defined in our sh scripts
     11You can switch the 64 to 32 if you are building with our ming32 environment.
    912
    1013{{{
    11  cd ${PROJECTS}
     14export OS_BUILD=64
     15export PROJECTS=/c/ming${OS_BUILD}/projects
     16if [ "$OS_BUILD" == "64" ] ; then
     17        export MINGHOST=x86_64-w64-mingw32
     18else
     19        export MINGHOST=i686-w64-mingw32
     20fi;
     21}}}
     22
     23==  create project folders ==
     24The download files we have above already have these folders and we like to keep
     25each set separate. The below we set to 64 for our ming64 folder
     26{{{
     27cd ${PROJECTS}
    1228 mkdir pgx${OS_BUILD}
    1329 mkdir postgresql
     
    1531 mkdir proj
    1632 mkdir docbook
    17  ls
     33
    1834
    1935}}}
     
    2137== GDAL ==
    2238{{{
    23 export GDAL_VER=1.9.2
     39export GDAL_VER=1.10.0
    2440cd ${PROJECTS}/gdal
    2541wget http://download.osgeo.org/gdal/gdal-${GDAL_VER}.tar.gz