File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -580,9 +580,6 @@ getPaths = do
580580 binDir <- takeDirectory <$> catch getExecutablePath (\ (_ :: SomeException ) -> getProgName) -- ~/.mcabal/bin
581581 let upDir = binDir </> " .."
582582 inplace <- doesFileExist (upDir </> " src/runtime/eval.c" )
583- when _isWindows $ do
584- getExecutablePath >>= print
585- print (upDir </> " src/runtime/eval.c" , inplace)
586583 if inplace then do
587584 let libDir = upDir </> " lib"
588585 gmpDir | wantGMP = [libDir </> " gmp" ]
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ instance NFData EDef where
123123 rnf (DfltSign a b) = rnf a `seq` rnf b
124124 rnf (SetTCState a) = seq a ()
125125
126- data XTCState = XTCState
126+ data XTCState
127127instance Eq XTCState where _ == _ = True
128128instance Show XTCState where show _ = " <<TCState>>"
129129
Original file line number Diff line number Diff line change 22module MicroHs.Version (
33 version ,
44 ) where
5- import qualified Prelude (); import MHSPrelude
5+ import qualified Prelude ()
66import Data.Version
77
88version :: Version
You can’t perform that action at this time.
0 commit comments