-
Notifications
You must be signed in to change notification settings - Fork 22
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 Haskell stackage snapshot to LTS-22.9 #1114
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ries on Windows build.
abizjak
approved these changes
Feb 5, 2024
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.
Had some problems with installing ghc 9.6.3 which were "fixed" by restarting the build a few times.
Not very reassuring, but seems to work.
MilkywayPirate
approved these changes
Feb 5, 2024
limemloh
approved these changes
Feb 5, 2024
abizjak
reviewed
Feb 5, 2024
td202
changed the title
Update Haskell stackage snapshot to LTS-22.5
Update Haskell stackage snapshot to LTS-22.9
Feb 5, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Purpose
Closes #1093
This upgrades the stack resolver to LTS-22.9, and the corresponding GHC version to 9.6.4.
Changes
proto-lens-setup
and its dependenciesproto-lens-protoc
andghc-source-gen
are not included in the LTS distribution, so specific versions from Hackage are pinned in the stack.yaml files.-fPIC
compiler option is disabled on Windows, as it results in the compiled code crashing due to access violations. Position independent code is not used on Windows in any case. There is an open GHC issue that seems to be related: https://gitlab.haskell.org/ghc/ghc/-/issues/24016TypeOperators
is added to the default extensions. In future, this will be needed for using~
, and currently will generate a warning if not enabled.Control.Monad
is explicitly imported, whereas it previously was implicitly imported through other monad modules).Checklist
hard-to-understand areas.