9/23/2008

ODE
It is easiest to install it in the root of C:
get ode-win32-0.8.zip
get ode-src-0.8.zip
unzip both into C:
open the build\vs2005 (or whichever) folder to the ode.sln
open the solution, and convert if necessary
build the DebugDll and ReleaseDll versions
0.10 + versions
These don't come with projects, but a tool to make them. Note: these now allow an option to build the library using double precision rather than single precision, but Emergent's client code expects the single version.
extract ode-xxxx.zip to C:\src cd C:\src\ode-0.10.1\build
premake --target vs2008
open the build/vs2008
(Win64) add a new x64 Solution Platform
build the DebugSingleDll and ReleaseSingleDll solutions
64 bit fixups
The following 2 files must be fixed up, since they use asm code which is not supported inline in x64: IceMemoryMacros.h
IceFPU.h
replace as follows: #ifdef _MSC_VER
with:
#if defined(MSC_VER) && !defined(_WIN64)