Alexey Kiryushin
Alexey Kiryushin
Thanks! I do have plans to add support for GHC 8.10. But before that, I have to upgrade `cabal-helper` library to version 1.1 that supports Cabal 3.0 and Cabal 3.2....
Hi, Building and indexing release versions of GHC (from Hackage) is simple. I used `cabal` with `buildable` flag to build and index GHC 8.6, 8.4 and 8.2. `buildable` flag is...
Interesting, There was a bug in `yaml` library that caused a segfault (https://github.com/snoyberg/yaml/issues/5), but that bug has been fixed since version 0.4.1.2. I successfully indexed the package from https://github.com/gelisam/haskell-code-explorer-bug using...
It may be related to https://gitlab.haskell.org/ghc/ghc/issues/16117 (Random segfaults at runtime on macOS Mojave caused by GHC 8.6.3 linker misaligning sections)
Thanks! I tried indexing on macOS Mojave (10.14) and also got "Segmentation fault: 11" with both GHG 8.6.3 and GHC 8.6.4. Now I can investigate this issue. There is a...
I've managed to reproduce the segfault on macOS Mojave using only GHC API. This code segfaults with "Segmentation fault: 11" message: ```haskell import Control.Monad.IO.Class import qualified Data.List as L import...
> is there an alternative value ghcLink can be given? There are 5 possible values (https://hackage.haskell.org/package/ghc-8.6.4/docs/DynFlags.html#t:GhcLink): `NoLink` Don't link at all `LinkBinary` Link object code into a binary `LinkInMemory` Use...
Hi, 1. It definitely makes sense to be able to sort files in alphabetical order. It should be quite easy to implement (this feature is purely client-side). I will work...
6954dbf99e66052cf7a0518355088d62bfdec5dd adds an option to sort files by name/type. By default, files are sorted by name (in alphabetical order).
Thank you Daniel! It would be great to use the new version of `cabal-helper`. I guess I should think about how to index multiple packages at once: https://github.com/alexwl/haskell-code-explorer/blob/63ad1f682e64cb6b854e399ed12af3a9986241f8/src/HaskellCodeExplorer/PackageInfo.hs#L162-L164 Also, thank...