-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Make distinct error limit configurable #17532
Conversation
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.
I chose to use a CLI argument instead of a const in the root file since changing it would invalidate most functions in an incremental compilation.
Changing it on the CLI creates an entirely separate cache namespace, so it's essentially the same thing. I don't think it should be a CLI argument.
Making it a const in the root file (or more likely in |
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.
OK, I think you make a fair argument. Let's do the CLI flag then 👍
This flag was added in ziglang#17532 to close ziglang#786, but the language reference was never updated to reflect the change.
This flag was added in ziglang#17532 to close ziglang#786, but the language reference was never updated to reflect the change.
Reverted in 328ec15 due to:
|
I chose to use a CLI argument instead of a const in the root file since changing it would invalidate most functions in an incremental compilation.
Closes #786