Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 255d571

Browse files
committed
Merge branch 'master' of https://github.com/haskell/haskell-ide-engine into 8.6.2-dist
2 parents dbd4d7f + ed512e2 commit 255d571

File tree

2 files changed

+14
-34
lines changed

2 files changed

+14
-34
lines changed

Diff for: Makefile

+8-8
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ submodules:
9999
## NOTE 3: This is needed for stack only projects too
100100
cabal:
101101
stack install cabal-install
102-
cabal v1-update
103-
cabal v1-install Cabal-2.4.1.0 --with-compiler=$(GHC)
102+
cabal update
103+
cabal install Cabal-2.4.1.0 --with-compiler=$(GHC)
104104
.PHONY: cabal
105105

106106
# ------------------------------------------------------
@@ -111,8 +111,8 @@ build-docs:
111111
&& stack --stack-yaml=stack-8.2.2.yaml exec hoogle generate \
112112
&& stack --stack-yaml=stack-8.4.2.yaml exec hoogle generate \
113113
&& stack --stack-yaml=stack-8.4.3.yaml exec hoogle generate \
114-
&& stack --stack-yaml=stack-8.4.4.yaml exec hoogle generate
115-
&& stack --stack-yaml=stack-8.6.1.yaml exec hoogle generate
114+
&& stack --stack-yaml=stack-8.4.4.yaml exec hoogle generate \
115+
&& stack --stack-yaml=stack-8.6.1.yaml exec hoogle generate \
116116
&& stack --stack-yaml=stack-8.6.2.yaml exec hoogle generate
117117
.PHONY: build-docs
118118

@@ -125,8 +125,8 @@ test: submodules cabal
125125
&& stack --stack-yaml=stack-8.2.2.yaml test \
126126
&& stack --stack-yaml=stack-8.4.2.yaml test \
127127
&& stack --stack-yaml=stack-8.4.3.yaml test \
128-
&& stack --stack-yaml=stack-8.4.4.yaml test
129-
&& stack --stack-yaml=stack-8.6.1.yaml test
128+
&& stack --stack-yaml=stack-8.4.4.yaml test \
129+
&& stack --stack-yaml=stack-8.6.1.yaml test \
130130
&& stack --stack-yaml=stack-8.6.2.yaml test
131131
.PHONY: test
132132

@@ -135,8 +135,8 @@ build-copy-compiler-tool: submodules cabal
135135
&& stack --stack-yaml=stack-8.2.2.yaml build --copy-compiler-tool \
136136
&& stack --stack-yaml=stack-8.4.2.yaml build --copy-compiler-tool \
137137
&& stack --stack-yaml=stack-8.4.3.yaml build --copy-compiler-tool \
138-
&& stack --stack-yaml=stack-8.4.4.yaml build --copy-compiler-tool
139-
&& stack --stack-yaml=stack-8.6.1.yaml build --copy-compiler-tool
138+
&& stack --stack-yaml=stack-8.4.4.yaml build --copy-compiler-tool \
139+
&& stack --stack-yaml=stack-8.6.1.yaml build --copy-compiler-tool \
140140
&& stack --stack-yaml=stack-8.6.2.yaml build --copy-compiler-tool
141141
.PHONY: build-copy-compiler-tool
142142

Diff for: README.md

+6-26
Original file line numberDiff line numberDiff line change
@@ -157,46 +157,26 @@ to VS Code user settings.
157157

158158
Otherwise, do one of the following.
159159

160-
#### For GHC 8.4.3
160+
#### For GHC 8.4.4
161161

162162
Using master
163163

164164
```bash
165165
stack install
166166
```
167-
#### For GHC 8.4.2
168167

169-
Using master
170-
171-
```bash
172-
stack --stack-yaml=stack-8.4.2.yaml install
173-
```
174-
175-
#### For GHC 8.2.2
168+
#### For Earlier Versions of GHC
176169

177170
Using master
178171

179172
```bash
180-
stack --stack-yaml=stack-8.2.2.yaml install
181-
```
182-
183-
Using branch `hie-0.1.0.0`
184-
185-
```bash
186-
stack install
187-
```
188-
189-
#### For GHC 8.2.1
190-
191-
```bash
192-
stack --stack-yaml=stack-8.2.1.yaml install
173+
stack --stack-yaml=stack-<VERSION>.yaml install
193174
```
194175

195-
#### For GHC 8.0.2 (only via branch `hie-0.1.0.0`)
176+
where <VERSION> correlates to one of the yaml files in the hie directory.
196177

197-
```bash
198-
stack --stack-yaml=stack-8.0.2.yaml install
199-
```
178+
Note that GHC 8.0.2 is only available via branch `hie-0.1.0.0` and will require
179+
you to use the instructions above 'For Earlier Versions of GHC'
200180

201181
### Installation on Windows
202182

0 commit comments

Comments
 (0)