Skip to content

Commit

Permalink
Add support for GHC 8.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwl committed Dec 23, 2018
1 parent 27024fa commit e6d0b7b
Show file tree
Hide file tree
Showing 13 changed files with 833 additions and 123 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,20 @@ cd haskell-code-explorer

To build Haskell Code Explorer Stack ([https://docs.haskellstack.org/en/stable/README/](https://docs.haskellstack.org/en/stable/README/)) is needed.

At the moment Haskell Code Explorer supports GHC 8.4.4, GHC 8.4.3, GHC 8.2.2, and 8.0.2.
At the moment Haskell Code Explorer supports GHC 8.6.3, GHC 8.4.4, GHC 8.4.3, GHC 8.2.2, and 8.0.2.

For GHC 8.4.4:
For GHC 8.6.3:

```bash
stack install
```

For GHC 8.4.4:

```bash
stack --stack-yaml=stack-8.4.4.yaml install
```

For GHC 8.4.3:

```bash
Expand Down
5 changes: 4 additions & 1 deletion app/Indexer.hs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ data Compression
| NoCompression
deriving (Show, Eq)

#if MIN_VERSION_GLASGOW_HASKELL(8,4,4,0)
#if MIN_VERSION_GLASGOW_HASKELL(8,6,3,0)
ghcVersion :: Version
ghcVersion = Version {versionBranch = [8, 6, 3, 0], versionTags = []}
#elif MIN_VERSION_GLASGOW_HASKELL(8,4,4,0)
ghcVersion :: Version
ghcVersion = Version {versionBranch = [8, 4, 4, 0], versionTags = []}
#elif MIN_VERSION_GLASGOW_HASKELL(8,4,3,0)
Expand Down
Loading

0 comments on commit e6d0b7b

Please sign in to comment.