diff options
author | 2016-01-08 14:08:49 +0100 | |
---|---|---|
committer | 2016-01-08 14:08:49 +0100 | |
commit | 6e47d71b835269a59ca3d03cdb590d04a100c0da (patch) | |
tree | ab960b2e803582a470acfb46c9d7b6fa4a5ad84a /scripts/src/osd/modules.lua | |
parent | b3a224378dd60eb23c0b21efe94bff6b51d92c08 (diff) |
It is affecting clang 3.6+
Diffstat (limited to 'scripts/src/osd/modules.lua')
-rw-r--r-- | scripts/src/osd/modules.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/src/osd/modules.lua b/scripts/src/osd/modules.lua index ff052e4bef4..640a6654d3e 100644 --- a/scripts/src/osd/modules.lua +++ b/scripts/src/osd/modules.lua @@ -140,7 +140,7 @@ function qtdebuggerbuild() local version = str_to_version(_OPTIONS["gcc_version"]) if _OPTIONS["gcc"]~=nil and (string.find(_OPTIONS["gcc"], "clang") or string.find(_OPTIONS["gcc"], "asmjs")) then configuration { "gmake" } - if (version >= 30700) then + if (version >= 30600) then buildoptions { "-Wno-inconsistent-missing-override", } |