-
Notifications
You must be signed in to change notification settings - Fork 8
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
The hermit and hermit-shell programs don't work on GHC 8 #176
Comments
I went ahead and made this change in cc58c11 |
For some reason the flag was removed in: We should probably clamor to have it added back. It prevents list literals from desugaring directly to foldr/build applications. (I've never really understood why they do that in the desugarer instead of via rewrite rules anyway.) |
bump :) |
is there a branch i can install? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The plugin itself seems to work okay, but GHC no longer recognizes the flag
-fsimple-list-literals
(which thehermit
andhermit-shell
executables pass toghc
). I am going to put in a check to only pass that flag if the GHC version < 8 (for the time being at least).Is this alright to do? I don't know much about this flag and I can't seem to find much documentation on it. I also can't find any discussion about why it was removed.
The text was updated successfully, but these errors were encountered: