Add --quiet-build to suppress make/compiler informationals.

This commit is contained in:
Wilson Snyder
2025-12-23 19:21:42 -05:00
parent 921ad64d22
commit 1b93033690
8 changed files with 45 additions and 3 deletions
+2
View File
@@ -1690,9 +1690,11 @@ void V3Options::parseOptsList(FileLine* fl, const string& optdir, int argc,
[this](const char* varp) { addParameter(varp, false); });
DECL_OPTION("-quiet", CbOnOff, [this](bool flag) {
m_quietBuild = flag;
m_quietExit = flag;
m_quietStats = flag;
});
DECL_OPTION("-quiet-build", OnOff, &m_quietBuild);
DECL_OPTION("-quiet-exit", OnOff, &m_quietExit);
DECL_OPTION("-quiet-stats", OnOff, &m_quietStats);