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
8 changes: 5 additions & 3 deletions agda-language-server.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.37.0.
-- This file has been generated from package.yaml by hpack version 0.38.3.
--
-- see: https://github.com/sol/hpack

Expand Down Expand Up @@ -160,8 +160,9 @@ executable als
if arch(wasm32)
build-depends:
unix >=2.8.0.0 && <2.9
if arch(wasm32)
ghc-options: -with-rtsopts=-V1
else
if !arch(wasm32)
ghc-options: -threaded -with-rtsopts=-N

test-suite als-test
Expand Down Expand Up @@ -242,6 +243,7 @@ test-suite als-test
if arch(wasm32)
build-depends:
unix >=2.8.0.0 && <2.9
if arch(wasm32)
ghc-options: -with-rtsopts=-V1
else
if !arch(wasm32)
ghc-options: -threaded -with-rtsopts=-N
4 changes: 4 additions & 0 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ executables:
- -Werror=incomplete-patterns
- -fno-warn-orphans
when:
- condition: "arch(wasm32)"
ghc-options: -with-rtsopts=-V1
- condition: "!arch(wasm32)"
ghc-options:
- -threaded
Expand Down Expand Up @@ -149,6 +151,8 @@ tests:
- -Werror=incomplete-patterns
- -fno-warn-orphans
when:
- condition: "arch(wasm32)"
ghc-options: -with-rtsopts=-V1
- condition: "!arch(wasm32)"
ghc-options:
- -threaded
Expand Down