egison 2.1.6 → 2.1.7
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- egison.cabal +1/−1
- hs-src/Compiler/egisonc.hs +1/−1
egison.cabal view
@@ -1,5 +1,5 @@ Name: egison-Version: 2.1.6+Version: 2.1.7 Synopsis: An Interpreter for the Programming Language Egison Description: An interpreter for the programming language Egison. A feature of Egison is the strong pattern match facility.
hs-src/Compiler/egisonc.hs view
@@ -110,7 +110,7 @@ compileHaskellFile filename = do let ghc = "ghc" -- compileStatus <- system $ ghc ++ " " ++ " -cpp --make -package ghc -fglasgow-exts -o " ++ filename ++ " _tmp.hs"- _ <- system $ ghc ++ " -o " ++ filename ++ " _tmp.hs"+ _ <- system $ ghc ++ "-O2 -o " ++ filename ++ " _tmp.hs" removeFile "./_tmp.hs" removeFile "./_tmp.hi" removeFile "./_tmp.o"