Skip to content

Commit d319fe5

Browse files
authored
Do not build the plutus executable if GHC <9.6 (#5940)
1 parent d10d5df commit d319fe5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plutus-core/plutus-core.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ executable plutus
675675
hs-source-dirs: executables/plutus
676676

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

681681
-- Hydra complains that this is not buildable on mingw32 because of brick.

plutus-core/plutus-core/src/PlutusCore/Evaluation/Machine/CostingFun/Core.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ data ModelConstantOrLinear = ModelConstantOrLinear
319319
} deriving stock (Show, Eq, Generic, Lift)
320320
deriving anyclass (NFData)
321321

322-
-- | if p then f(x) else c; p depends on usage
322+
-- | if p then f(x) else c; p depends on usage
323323
data ModelConstantOrOneArgument = ModelConstantOrOneArgument
324324
{ modelConstantOrOneArgumentConstant :: CostingInteger
325325
, modelConstantOrOneArgumentModel :: ModelOneArgument

0 commit comments

Comments
 (0)