Merge branch 'master' into codelite-libdirs

This commit is contained in:
Sebastian Kylander 2018-04-21 16:04:51 +02:00 committed by GitHub
commit cd65f0e68e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@
RDRND = "-mrdrnd",
},
warnings = {
Extra = "-Wall -Wextra",
Extra = {"-Wall", "-Wextra"},
High = "-Wall",
Off = "-w",
},

View File

@ -77,7 +77,7 @@
function suite.cflags_onExtraWarnings()
warnings "extra"
prepare()
test.contains({ "-Wall -Wextra" }, gcc.getcflags(cfg))
test.contains({ "-Wall", "-Wextra" }, gcc.getcflags(cfg))
end
function suite.cflags_onHighWarnings()