diff options
author | 2022-02-26 00:25:58 +1100 | |
---|---|---|
committer | 2022-02-26 00:25:58 +1100 | |
commit | a79ea2e9baf351d80452e3fc9f53be06c0bb8a58 (patch) | |
tree | 0d752f300238f3999508e137b07185e1c076325f /scripts/genie.lua | |
parent | 1281aa019f5175cc76ee3d51d2f56ea28f62aec7 (diff) | |
parent | 45b02a490f066feb186df56b83c5c19c5499bff5 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index d95877305fc..935738bfd9e 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1079,7 +1079,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 +1086,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 |