This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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: