Riverscapes / gcd

Geomorphic Change Detection For Windows
http://gcd.riverscapes.xyz
GNU General Public License v3.0
25 stars 5 forks source link

64 bit StandAlone #259

Closed philipbaileynar closed 6 years ago

philipbaileynar commented 6 years ago

Finish the work to make a 64 bit version of the GCD StandAlone. It's currently only in 32 bit.

MattReimer commented 6 years ago

For future reference here is the secret:

  <!-- Properties group for Determining 64bit Architecture -->
  <PropertyGroup>
    <GDALPath>..\extlib\release-1800-gdal-2-2-1-mapserver-7-0-6\bin</GDALPath>
    <GDALPath Condition="'$(Platform)'!='x64'">..\extlib\release-1800-x86-gdal-2-2-1-mapserver-7-0-6\bin</GDALPath>
  </PropertyGroup>  
  <ItemGroup>
    <Reference Include="gdalconst_csharp">
      <HintPath>$(GDALPath)\gdal\csharp\gdalconst_csharp.dll</HintPath>
    </Reference>
...
MattReimer commented 6 years ago

Here's another useful one (must be run in git bash cygwin terminal, not dos box)

 find -name "*.dll" | xargs file > summary.txt
MattReimer commented 6 years ago

A little preliminary but I think we're getting some small performance increase on the x64

untitled drawing

MattReimer commented 6 years ago

Just fixed #262 which gives us an even greater performance boost.