-
Notifications
You must be signed in to change notification settings - Fork 212
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
Feature request: Configurable warnings #1597
Comments
There are some existing options when running These do require you to run |
I was thinking about warnings from Souffle itself, just using C compilers as an example (though it's good to know about those options to
|
Copying from #2319, the remaining steps for this feature are:
|
Lots of compilers have a lot of configurability around the warnings they emit. A classic example would be
gcc
orclang
, which have a number of great features:-W
flags)-Wall
should basically always be used,-Wpedantic
for the extra careful)-Werror
), either individually or collectively.It'd be great to get some of these features in Souffle!
The text was updated successfully, but these errors were encountered: