-
Notifications
You must be signed in to change notification settings - Fork 23
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
C++11 warnings result in build failure. #110
Comments
For non developers, adding |
JRegimbal
added a commit
to JRegimbal/libmei
that referenced
this issue
Jul 22, 2020
Since some features are deprecated (and more possibly will be eventually), keep errors on warnings (-Werror) but also add an exception to just warn on deprecation (-Wno-error=deprecated) rather than fail. This keeps deprecation warnings visible and also causes more serious warnings (like uninitialized variables/pointers) to error. This addresses issue DDMAL#110.
JRegimbal
added a commit
to JRegimbal/libmei
that referenced
this issue
Aug 7, 2020
Since some features are deprecated (and more possibly will be eventually), keep errors on warnings (-Werror) but also add an exception to just warn on deprecation (-Wno-error=deprecated) rather than fail. This keeps deprecation warnings visible and also causes more serious warnings (like uninitialized variables/pointers) to error. This addresses issue DDMAL#110.
rettinghaus
pushed a commit
to eNote-GmbH/libmei
that referenced
this issue
Jul 1, 2022
Since some features are deprecated (and more possibly will be eventually), keep errors on warnings (-Werror) but also add an exception to just warn on deprecation (-Wno-error=deprecated) rather than fail. This keeps deprecation warnings visible and also causes more serious warnings (like uninitialized variables/pointers) to error. This addresses issue DDMAL#110.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When building on Ubuntu I'm seeing warnings like this that ultimately result in a build failure:
Normally warnings are not considered errors, but the compiler is being asked to make them errorrs. When I remove those lines the build succeeds.
The text was updated successfully, but these errors were encountered: