I'm getting crashes from ghc-6.10.0.20081007 and ghc-6.11.20081024 when doing a very simple GLUT program (below) with OpenGL-2.2.1.1
and GLUT-2.1.1.2 (the latest from Hackage), running on WinXP.&nbsp; It works fine on ghc-6.9.20080622 .<br><br>I&#39;d appreciate hearing about other attempts with these versions on Windows systems.<br><br>Thanks,&nbsp; - Conal <br>
<br><br><span style="font-family: courier new,monospace;">import Graphics.UI.GLUT</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">main :: IO ()</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">main = do putStrLn &quot;Initializing&quot;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; getArgsAndInitialize</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return ()</span><br><br>