You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 18, 2026. It is now read-only.
Currently hrepl assumes GHC is dynamically linked and that ghci will load dynamic libraries. Quoting tweag/rules_haskell#1210 (comment), there are two situations where this is relevant:
A static-mode GHC toolchain (e.g. on Windows) where Haskell libraries are only compiled to static archives. GHCi can load these, provided they are built with -fPIC (and -fexternal-dynamic-refs on Unix).
A C library dependency that only provides a pic_static_library. GHCi's loader can usually load these.
Currently
hreplassumes GHC is dynamically linked and thatghciwill load dynamic libraries. Quoting tweag/rules_haskell#1210 (comment), there are two situations where this is relevant: