I can successfully build executables that link against OpenGL using GHC, however I cannot get the package to load into GHCi. This is definitely a regression for me because it works on 32-bit GHC (at least the version I upgraded from). I do not think the GHC version matters, just the fact that I am using the 64-bit GHC system.
On the recommendation of the maintainer I explicitly brought the correct 64-bit version of opengl32 into GHCi successfully. It seems to be an issue higher up the stream.
Here is the output that is relevant. The verbose output is unfortunately just as specific. The function wglGetProcAddress is used to find where the opengl api hooks are in the dll.
$ ghcii.sh -package OpenGL
GHCi, version 7.6.1: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Loading package OpenGLRaw-1.2.0.0 ... linking ... ghc.exe: unable to load package `OpenGLRaw-1.2.0.0'
ghc.exe: C:\...\cabal\OpenGLRaw-1.2.0.0\ghc-7.6.1\HSOpenGLRaw-1.2.0.0.o: unknown symbol `__imp_wglGetProcAddress'
-fno-ghci-sandboxflag in GHCi? If you have any libraries that use thread local storage, GHCi will have trouble with them if you don't. – rtperson Oct 24 '12 at 20:18