Changes between Version 7 and Version 8 of DevWikiWinMingWSys_20_MSVC
- Timestamp:
- 02/29/12 11:19:15 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiWinMingWSys_20_MSVC
v7 v8 77 77 {{{ 78 78 cd /c/build/sources 79 wget http://download.osgeo.org/geos/geos-3.3.3.tar.bz2 79 wget http://download.osgeo.org/geos/geos-3.3.3.tar.bz2 (if this does not exist use http://geos.osgeo.org/snapshots/geos-20120228.tar.bz2 ) 80 80 tar xvfj geos-3.3.3.tar.bz2 81 81 mkdir geos-3.3.3-build … … 84 84 }}} 85 85 86 Edit the CMakeLists.txt file and the following line to stop floating point precision issues (which will lead to regression failures in PostGIS later on if you don't make the change)86 Edit the CMakeLists.txt file and add the following line to stop floating point precision issues (which will lead to regression failures in PostGIS later on if you don't make the change) 87 87 {{{ 88 88 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP /fp:strict /fp:except-") 89 89 }}} 90 right before this line90 ADD it right before this line 91 91 {{{ 92 92 add_definitions(-D_SCL_SECURE_NO_WARNINGS)