We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d10125 commit a64c7dbCopy full SHA for a64c7db
tools/bin/mtest
@@ -236,7 +236,10 @@ def toolchain(target, exit_on_failure=True):
236
c_flags += " -Os"
237
if "-std" not in target.cflags: c_flags += " -std=c99"
238
if args.no_warnings:
239
- c_flags += " -Wno-everything"
+ if "clang" in target.compiler:
240
+ c_flags += " -Wno-everything"
241
+ else:
242
+ c_flags += " -Wno-all -Wno-extra"
243
else:
244
c_flags += " " + WARNING_FLAGS.get(target.compiler, "")
245
if target.cflags:
0 commit comments