Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions skeleton/cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ if !(arch(javascript) || arch(wasm32))
--optional-packages:
-- deps/jenga/deps/reflex-dom/*

-- multi-repl: True
-- Disabled: GHC 9.14 multi-unit GHCi panics with "LinkInMemory".
multi-repl: True
-- Re-enabled to investigate the LinkInMemory panic prior turns noted.



Expand Down
6 changes: 6 additions & 0 deletions skeleton/frontend/js/frontend-js.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,18 @@ custom-setup
jenga-setup

library
hs-source-dirs: src
build-depends: base
--
, frontend

reexported-modules: Frontend

-- Placeholder module: workaround for GHC #25366 / #26073.
-- cabal repl --enable-multi-repl panics ("LinkInMemory") on units
-- with no exposed-modules of their own.
exposed-modules: FrontendJs.Placeholder

default-language: Haskell2010

if (arch(javascript) || arch(wasm32))
Expand Down
1 change: 1 addition & 0 deletions skeleton/frontend/js/src/FrontendJs/Placeholder.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module FrontendJs.Placeholder where
8 changes: 8 additions & 0 deletions skeleton/frontend/wasm/frontend-wasm.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,20 @@ custom-setup
jenga-setup

library
hs-source-dirs: src
build-depends: base
--
, frontend

reexported-modules: Frontend

-- Placeholder module: workaround for GHC #25366 / #26073.
-- cabal repl --enable-multi-repl panics ("LinkInMemory") on units
-- with no exposed-modules of their own. See:
-- https://gitlab.haskell.org/ghc/ghc/-/issues/25366
-- https://gitlab.haskell.org/ghc/ghc/-/issues/26073
exposed-modules: FrontendWasm.Placeholder

default-language: Haskell2010

if (arch(javascript) || arch(wasm32))
Expand Down
1 change: 1 addition & 0 deletions skeleton/frontend/wasm/src/FrontendWasm/Placeholder.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module FrontendWasm.Placeholder where
Loading