We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ignore_warnings
PR #4471 adds the ingore_warnings option to Kompile class in pyk to expose the -Wno flag from kompile.
ingore_warnings
Kompile
-Wno
kompile
As of now, if we pass -Wno A, -Wno B,C it'll result in ignore_warnings=["A", "B,C"], but ignore_warnings=["A", "B", "C"] is preferable.
-Wno A, -Wno B,C
ignore_warnings=["A", "B,C"]
ignore_warnings=["A", "B", "C"]
The text was updated successfully, but these errors were encountered:
cc @tothtamas28
Sorry, something went wrong.
ignore-warnings
No branches or pull requests
PR #4471 adds the
ingore_warnings
option toKompile
class in pyk to expose the-Wno
flag fromkompile
.As of now, if we pass
-Wno A, -Wno B,C
it'll result inignore_warnings=["A", "B,C"]
, butignore_warnings=["A", "B", "C"]
is preferable.The text was updated successfully, but these errors were encountered: