-
-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update ghc-9.0.1 support #2131
Update ghc-9.0.1 support #2131
Changes from 8 commits
81bd7c9
6a82d1d
2e8aabe
5280bb0
d2efcc8
b477075
6e9d0bb
7205f13
5df4b1c
90cb511
621d8e8
f7f0df2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ packages: | |
-- ./plugins/hls-brittany-plugin | ||
-- ./plugins/hls-stylish-haskell-plugin | ||
-- ./plugins/hls-fourmolu-plugin | ||
./plugins/hls-class-plugin | ||
-- ./plugins/hls-class-plugin | ||
./plugins/hls-eval-plugin | ||
./plugins/hls-explicit-imports-plugin | ||
./plugins/hls-refine-imports-plugin | ||
|
@@ -24,6 +24,9 @@ packages: | |
./plugins/hls-module-name-plugin | ||
./plugins/hls-ormolu-plugin | ||
./plugins/hls-call-hierarchy-plugin | ||
|
||
with-compiler: ghc-9.0.1 | ||
|
||
tests: true | ||
|
||
package * | ||
|
@@ -45,9 +48,9 @@ source-repository-package | |
|
||
source-repository-package | ||
type: git | ||
location: https://github.com/jneira/hie-bios/ | ||
tag: 9b1445ab5efcabfad54043fc9b8e50e9d8c5bbf3 | ||
-- https://github.com/mpickering/hie-bios/pull/285 | ||
location: https://github.com/mpickering/hie-bios/ | ||
tag: 1875bff093983a0506f80e214eda27e7419da3bc | ||
-- https://github.com/mpickering/hie-bios/pull/300 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is there an upstream issue to upload this to Hackage? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've commented in the mentioned pr about: haskell/hie-bios#300 (comment) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Release is done |
||
|
||
source-repository-package | ||
type: git | ||
|
@@ -76,56 +79,15 @@ source-repository-package | |
|
||
write-ghc-environment-files: never | ||
|
||
index-state: 2021-08-08T02:21:16Z | ||
index-state: 2021-08-26T12:41:26Z | ||
|
||
constraints: | ||
-- These plugins doesn't work on GHC9 yet | ||
haskell-language-server -brittany -class -fourmolu -splice -stylishhaskell -tactic -refineImports | ||
|
||
|
||
allow-newer: | ||
-- -- Broken on ghc9, but let's pretend it's not so we can build the other things | ||
-- brittany:base, | ||
-- brittany:ghc, | ||
-- brittany:ghc-boot-th, | ||
-- butcher:base, | ||
-- fourmolu:ghc-lib-parser, | ||
-- stylish-haskell:ghc-lib-parser, | ||
-- stylish-haskell:Cabal, | ||
-- multistate:base, | ||
-- ghc-source-gen:ghc, | ||
|
||
assoc:base, | ||
cryptohash-md5:base, | ||
cryptohash-sha1:base, | ||
constraints-extras:template-haskell, | ||
data-tree-print:base, | ||
deepseq:base, | ||
dependent-sum:some, | ||
dependent-sum:constraints, | ||
diagrams-postscript:base, | ||
diagrams-postscript:lens, | ||
diagrams-postscript:diagrams-core, | ||
diagrams-postscript:monoid-extras, | ||
diagrams:diagrams-core, | ||
Chart-diagrams:diagrams-core, | ||
SVGFonts:diagrams-core, | ||
dual-tree:base, | ||
-- Does this make any sense? | ||
entropy:Cabal, | ||
force-layout:base, | ||
force-layout:lens, | ||
floskell:ghc-prim, | ||
floskell:base, | ||
hashable:base, | ||
hslogger:base, | ||
monoid-extras:base, | ||
newtype-generics:base, | ||
parallel:base, | ||
regex-base:base, | ||
regex-tdfa:base, | ||
statestack:base, | ||
svg-builder:base, | ||
these:base, | ||
time-compat:base | ||
|
||
floskell:ghc-prim, | ||
-- for shake-bench | ||
Chart-diagrams:diagrams-core, | ||
SVGFonts:diagrams-core |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what does this do?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is the equivalent to do
-w ghc-9.0.1
or--with-compiler ghc-9.0.1
, make the build use that compiler executable