Skip to content

Commit

Permalink
Do not build the plutus executable if GHC <9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
zliu41 committed Apr 30, 2024
1 parent d10d5df commit 9945a76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plutus-core/plutus-core.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ executable plutus
hs-source-dirs: executables/plutus

-- singletons-th does not support GHC<=8.10
if impl(ghc <9.0)
if impl(ghc <9.6)
buildable: False

-- Hydra complains that this is not buildable on mingw32 because of brick.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ data ModelConstantOrLinear = ModelConstantOrLinear
} deriving stock (Show, Eq, Generic, Lift)
deriving anyclass (NFData)

-- | if p then f(x) else c; p depends on usage
-- | if p then f(x) else c; p depends on usage
data ModelConstantOrOneArgument = ModelConstantOrOneArgument
{ modelConstantOrOneArgumentConstant :: CostingInteger
, modelConstantOrOneArgumentModel :: ModelOneArgument
Expand Down

0 comments on commit 9945a76

Please sign in to comment.