comparison cpudetect.c @ 10823:df1433f614f6

disable sse support for mingw because of missing memalign
author faust3
date Sat, 06 Sep 2003 12:06:59 +0000
parents 890f35b31edd
children 685c416f12b5
comparison
equal deleted inserted replaced
10822:6377c7d0459e 10823:df1433f614f6
165 gCpuCaps.has3DNow, 165 gCpuCaps.has3DNow,
166 gCpuCaps.has3DNowExt ); 166 gCpuCaps.has3DNowExt );
167 #endif 167 #endif
168 168
169 /* FIXME: Does SSE2 need more OS support, too? */ 169 /* FIXME: Does SSE2 need more OS support, too? */
170 #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(WIN32) 170 #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__)
171 if (caps->hasSSE) 171 if (caps->hasSSE)
172 check_os_katmai_support(); 172 check_os_katmai_support();
173 if (!caps->hasSSE) 173 if (!caps->hasSSE)
174 caps->hasSSE2 = 0; 174 caps->hasSSE2 = 0;
175 #else 175 #else