...
U _ProcessInformationCopyDictionary
000000a0 b _exepath
00000000 T _iceExePath
U _kCFBundleExecutableKey
...
The documentation at
http://www.haskell.org/ghc/docs/6.8.3/html/users_guide/ghci-invocation.html#id307468 says that:
"GHCi can also load plain object files (.o or .obj depending on your platform) from the command-line. Just add the name the object file to the command line."
So, I've tried both of these command lines:
> ghci ./Bar.o -package Foo
> ghci -package Foo ./Bar.o
but ghci still can't find _iceExePath, and the same error occurs. I'm using GHC 6.8.3. I'm not sure how to proceed and would appreciate any advice.
Thanks for your help,
Ryan Wisnesky