comparison cpudetect.c @ 12613:c315d377634f

disable buggy sse on mingw
author faust3
date Fri, 18 Jun 2004 20:56:06 +0000
parents da228f2485d9
children 315f133df221
comparison
equal deleted inserted replaced
12612:a731d98a3382 12613:c315d377634f
168 gCpuCaps.has3DNow, 168 gCpuCaps.has3DNow,
169 gCpuCaps.has3DNowExt ); 169 gCpuCaps.has3DNowExt );
170 #endif 170 #endif
171 171
172 /* FIXME: Does SSE2 need more OS support, too? */ 172 /* FIXME: Does SSE2 need more OS support, too? */
173 #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__) || defined(__MINGW32__) || defined(__OpenBSD__) 173 #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__) || defined(__OpenBSD__)
174 if (caps->hasSSE) 174 if (caps->hasSSE)
175 check_os_katmai_support(); 175 check_os_katmai_support();
176 if (!caps->hasSSE) 176 if (!caps->hasSSE)
177 caps->hasSSE2 = 0; 177 caps->hasSSE2 = 0;
178 #else 178 #else