We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5d30fd commit 4edd00bCopy full SHA for 4edd00b
1 file changed
src/MicroHs/Compile.hs
@@ -579,7 +579,7 @@ getPaths = do
579
-- There are two scenarios: either we are running inplace or installed
580
binDir <- takeDirectory <$> catch getExecutablePath (\ (_ :: SomeException) -> getProgName) -- ~/.mcabal/bin
581
let upDir = binDir </> ".."
582
- inplace <- doesDirectoryExist (upDir </> "src/runtime")
+ inplace <- doesFileExist (upDir </> "src/runtime/eval.c")
583
if inplace then do
584
let libDir = upDir </> "lib"
585
gmpDir | wantGMP = [libDir </> "gmp"]
0 commit comments