disable SSE by default on btDbvt, it breaks build on Windows 64 bit and Win32 Intel compiler.

This commit is contained in:
erwin.coumans
2008-09-06 16:58:18 +00:00
parent d61a3aac7f
commit 103b98de73

View File

@@ -57,7 +57,10 @@ subject to the following restrictions:
#endif
// Specific methods implementation
#ifdef WIN32
//disabled by default, it breaks certain compilers and platforms (Intel compiler on Win32 and any compiler on Windows 64 bits)
//#define WIN32_USE_SSE 1
#ifdef WIN32_USE_SSE
#define DBVT_PROXIMITY_IMPL DBVT_IMPL_SSE
#define DBVT_SELECT_IMPL DBVT_IMPL_SSE
#define DBVT_MERGE_IMPL DBVT_IMPL_SSE