From 67812a4621533e9da4d5d9ec219d27174e6f0c49 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Mon, 19 Sep 2011 02:28:49 +0000 Subject: [PATCH] Temporarily disabling SSE2 on Windows again until we can build on VS 2005. Skipping review because the build is broken on Windows. Review URL: http://webrtc-codereview.appspot.com/156003 git-svn-id: http://webrtc.googlecode.com/svn/trunk@617 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/typedefs.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/typedefs.h b/src/typedefs.h index ca3b509c00..58952336ef 100644 --- a/src/typedefs.h +++ b/src/typedefs.h @@ -80,7 +80,10 @@ #error Please add support for your architecture in typedefs.h #endif -#if defined(__SSE2__) || defined(_MSC_VER) +// TODO(andrew): Enable on Windows. Temporarily disabled again until we can +// build on VS 2005... +//#if defined(__SSE2__) || defined(_MSC_VER) +#if defined(__SSE2__) #define WEBRTC_USE_SSE2 #endif