Fix/workaround #19617: new raytracer use of SSE is crashing Mingw builds,

so disable SSE in that case now.
This commit is contained in:
Brecht Van Lommel 2009-10-19 15:58:09 +00:00
parent 653815923f
commit 16c1a2944c

@ -1,7 +1,7 @@
#!/usr/bin/python
Import ('env')
if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
if env['OURPLATFORM'] in ('win32-vc', 'win64-vc', 'win32-mingw'):
# FIXME: need to set the appropriate flags for msvc, otherwise we get warnings
cflags = []
cxxflags = []