This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Open
Conversation
Using silent rules in automake builds makes build errors just pop instead of getting lost in the noise.
Build noise was being generated because of a redefinition of VERSION_STRING when building using autotools. Silenced it by ifdefing the Windows-specific hardcoded version string definition if the autotools are in use.
The variable $CSSFLAGS is reserved for user use and should not be forced by the build machinery (like the autotools). This prevents using fancy-schamncy things like -Wall from the command line. This change moves a few things around so that the flags required by the build machinery (eg. -std=c++11) use the AM_CXXFLAGS reserved for that purpose and leaves CXXFLAGS free for appropriate use.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enable silent building when using an autotools build.
The amount of noise coming from an autotools build is so high that it's hard to see warnings and errors. This PR sets the default to silent builds to help the errors and warning pop.
Noisy builds can be enabled at any time with the --disable-silent-rules option passed to configure or by using make V=1.