Skip to content
Open
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
14 changes: 7 additions & 7 deletions plutus-core/plutus-core.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ test-suite plutus-core-test
import: lang

-- needs linux 'diff' available
if os(windows)
if (os(windows) || arch(wasm32))
buildable: False

type: exitcode-stdio-1.0
Expand Down Expand Up @@ -416,7 +416,7 @@ test-suite untyped-plutus-core-test
import: lang

-- needs linux 'diff' available
if os(windows)
if (os(windows) || arch(wasm32))
buildable: False

type: exitcode-stdio-1.0
Expand All @@ -436,7 +436,7 @@ library untyped-plutus-core-testlib
hs-source-dirs: untyped-plutus-core/testlib

-- needs linux 'diff' available
if os(windows)
if (os(windows) || arch(wasm32))
buildable: False

exposed-modules:
Expand Down Expand Up @@ -610,7 +610,7 @@ test-suite plutus-ir-test
import: lang

-- needs linux 'diff' available
if os(windows)
if (os(windows) || arch(wasm32))
buildable: False

type: exitcode-stdio-1.0
Expand Down Expand Up @@ -683,7 +683,7 @@ executable plutus

-- Hydra complains that this is not buildable on mingw32 because of brick.
-- Strange, because I thought vty added support for windows.
if os(windows)
if (os(windows) || arch(wasm32))
buildable: False

other-modules:
Expand Down Expand Up @@ -980,7 +980,7 @@ executable generate-cost-model
buildable: False

-- Can't build on windows as it depends on R.
if os(windows)
if (os(windows) || arch(wasm32))
buildable: False

build-depends:
Expand Down Expand Up @@ -1025,7 +1025,7 @@ benchmark cost-model-test
buildable: False

-- Can't build on windows as it depends on R.
if os(windows)
if (os(windows) || arch(wasm32))
buildable: False

build-depends:
Expand Down
Loading