Refactoring and enhancements to RGBASM warnings (#1526)

* Allow a `no-` prefix to negate "meta" warnings
  (`-Wno-all`, `-Wno-extra`, `-Wno-everything`)
* Allow `-Wno-error=...` to override `-Werror`
  (including for "meta" warnings)
This commit is contained in:
Sylvie
2024-10-04 15:52:40 -04:00
committed by GitHub
parent a9e49a09fd
commit cf85146353
5 changed files with 234 additions and 289 deletions

View File

@@ -293,7 +293,7 @@ int main(int argc, char *argv[]) {
break;
case 'W':
processWarningFlag(musl_optarg);
opt_W(musl_optarg);
break;
case 'w':