haskell / hie-bios

Set up a GHC API session for various Haskell Projects

Home Page:https://hackage.haskell.org/package/hie-bios

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proposal: faster Bios protocol

pepeiborra opened this issue · comments

Currently the Bios protocol can involve two process calls: one asking for the flags/targets and another asking for the deps. This split means that the Bios program may need to implement some stateful caching in order to respond efficiently to the second request.

The proposal is to merge both calls into a single one using two env vars: HIE_BIOS_FLAGS and HIE_BIOS_DEPS. I would add a third output value, the path to ghc, in an env var HIE_BIOS_GHC_PATH.

HIE_BIOS_GHC_PATH will also unblock #265

Is anyone working on HIE_BIOS_GHC_PATH? It's the only piece missing and I might find some time to work on it during the incoming days.

I am not working on it right now.

commented

The first part of this proposal has been implemented.
For the second part of this proposal, which is about the GHC version used for the Bios Cradle, I am closing this issue in favour of #401