diff options
author | 2015-12-04 20:22:48 +0100 | |
---|---|---|
committer | 2015-12-04 20:22:48 +0100 | |
commit | 2ce19e896bc9567ffe6d9e04eeddc2eacd30fa2d (patch) | |
tree | 6c60108793c47a144effee0aebe9a9f81ce2b676 /scripts/genie.lua | |
parent | a7c2caf136b46f5f8f10fd9d6a4b4cac090e307c (diff) |
Removed need for -Wno-c++11-narrowing for clang
and -Wno-unused-result,-Wno-narrowing and -Wno-attributes on gcc (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index c7b36fb924f..e05d04c6d36 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -974,7 +974,7 @@ end "-Wno-tautological-compare", "-Wno-dynamic-class-memaccess", "-Wno-unused-value", - "-Wno-c++11-narrowing", +-- "-Wno-c++11-narrowing", "-Wno-inline-new-delete", "-Wno-constant-logical-operand", "-Wno-deprecated-register", @@ -997,9 +997,9 @@ end os.exit(-1) end buildoptions { - "-Wno-unused-result", - "-Wno-narrowing", - "-Wno-attributes", +-- "-Wno-unused-result", +-- "-Wno-narrowing", +-- "-Wno-attributes", -- array bounds checking seems to be buggy in 4.8.1 (try it on video/stvvdp1.c and video/model1.c without -Wno-array-bounds) "-Wno-array-bounds", } |