diff options
author | 2020-05-02 15:41:02 -0400 | |
---|---|---|
committer | 2020-05-02 15:41:02 -0400 | |
commit | 47a8f8c2bbe25667d8c4ef0326401137db36d836 (patch) | |
tree | 911b6cf3fe23c0f7608b2ea9f0e76f401a9c008a /scripts/genie.lua | |
parent | 335693151eb521bca272da32017b04ab397d8369 (diff) |
GCC 10 fix for sqlite3 (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index a8967409dc4..024352cb472 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1101,6 +1101,11 @@ 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 end end |