Is there a way to plug a Haskell function of type
myFFI :: (C a) => String -> IO a
(where C is some typeclass describing the types of variables I can import) into GHC as an FFI scheme so that I can write in my Haskell program stuff like
foreign import myFFI "foo" foo :: T1 -> T2
that gets compiled into a call to foo = unsafePerformIO $ myFFI "foo" :: T1 -> T2?
I imagine this could be done by modifying GHC, but is there a way to do it via a plugin I can write without touching the GHC codebase proper?
(T1 -> T2)==IO a, and this doesn't typecheck. – Tener Mar 24 '12 at 18:17unsafePerformIOwill perform the IO operation (unsafely, even), which will let the expression be any typea, in this case so thata ~ (T1 -> T2). – dflemstr Mar 25 '12 at 1:07[myFFI|Whatever.x :: T1 -> T2|]that compiles intox = unsafePerformIO $ myFFI "Whatever.x" :: T1 -> T2. Is there a way to make theseunsafePerformIOs run at startup instead of lazily? – Cactus Mar 26 '12 at 4:35unsafePerformIO? – Don Stewart May 23 '12 at 15:36