foreign import from RTS into GHC source

Nicolas Frisby nicolas.frisby at gmail.com
Wed Jul 10 23:26:23 CEST 2013


I'm adding a foreign import in a GHC module from the RTS. I'm using a CPP
directive to avoid the import in the stage1 compiler, since the RTS
function I need doesn't necessarily exist in that version of the RTS.

> #if STAGE < 2
>   … -- make do without the import
> #else
>   … -- do the import and use it
> #endif

Do you have any criticism of this overall design?

EG Is there a preference to use Config.cStage instead of CPP and the STAGE
symbol?

Thanks.

P.S. — for some context, this is for Solution 1 at
http://ghc.haskell.org/trac/ghc/wiki/Plugins/ReinitializeGlobals
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.haskell.org/pipermail/ghc-devs/attachments/20130710/69723185/attachment.htm>


More information about the ghc-devs mailing list