From 06167a0b319335ef9cd45afc8867bc1eb96c74e9 Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Sat, 6 Dec 2008 01:54:29 +0000 Subject: [PATCH] For visual studio 2005 and later project files, in release mode use /fp:fast, /arch:SSE2 and using intrinsics. Thanks to Roy Eltham for the tip: http://www.bulletphysics.com/Bullet/phpBB3/viewtopic.php?f=9&t=2930 --- mk/msvcgen/projectx7.tlib | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mk/msvcgen/projectx7.tlib b/mk/msvcgen/projectx7.tlib index c02f67aad..a2949c67e 100644 --- a/mk/msvcgen/projectx7.tlib +++ b/mk/msvcgen/projectx7.tlib @@ -67,6 +67,9 @@ [% END %] [% MACRO compiler_release BLOCK -%] + EnableIntrinsicFunctions="true" + EnableEnhancedInstructionSet="2" + FloatingPointModel="2" Optimization="2" StringPooling="TRUE" EnableFunctionLevelLinking="TRUE"