diff options
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index d95877305fc..9dd282cb104 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1040,8 +1040,6 @@ end "-fdiagnostics-show-note-include-stack", "-Wno-cast-align", "-Wno-constant-logical-operand", - "-Wno-extern-c-compat", - "-Wno-ignored-qualifiers", "-Wno-pragma-pack", -- clang 6.0 complains when the packing change lifetime is not contained within a header file. "-Wno-tautological-compare", "-Wno-unknown-attributes", @@ -1079,7 +1077,6 @@ end } if (version >= 80000) then buildoptions { - "-Wno-format-overflow", -- try machine/bfm_sc45_helper.cpp in GCC 8.0.1, among others "-Wno-stringop-truncation", -- ImGui again "-Wno-stringop-overflow", -- formats/victor9k_dsk.cpp bugs the compiler } @@ -1087,17 +1084,10 @@ end "-Wno-class-memaccess", -- many instances in ImGui and BGFX } end - if (version >= 100000) then - buildoptions { - "-Wno-return-local-addr", -- sqlite3.c in GCC 10 - } - end if (version >= 110000) then buildoptions { "-Wno-nonnull", -- luaengine.cpp lambdas do not need "this" captured but GCC 11.1 erroneously insists "-Wno-stringop-overread", -- machine/bbc.cpp in GCC 11.1 - "-Wno-misleading-indentation", -- sqlite3.c in GCC 11.1 - "-Wno-maybe-uninitialized" -- expat in GCC 11.1 } end end |