-
Notifications
You must be signed in to change notification settings - Fork 392
Issue #7714: New cabal flag -f Werror to control -Werror #7718
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
base: master
Are you sure you want to change the base?
Conversation
This simplifies the release process, as one does not need to manually replace -Werror by -Wwarn before release.
|
It might be confusing to simply call the flag It might be better to link this behavior to some more abstract flag, such as That way, the flag can be made to carry more water later on, such as affecting the available tests? |
|
Alternatively, we could just set the |
Indeed, good point. However, this requires us to drop v1-cabal in the development process because So, the action plan could look be this sequence:
To solve the Agda version problem with the git commit hash we could place this under a |
Is the idea that this file should not be part of the release? Does |
|
@nad Project files are ignored if they're not the main project file. I have checked (with |
|
Well, Hackage only accepts individual packages, defined by a But this is a common confusion. Note that we ship |
This simplifies the release process, as one does not need to manually replace
-Werrorby-Wwarnbefore release.Closes #7714.