diff options
author | 2024-12-31 13:35:05 -0300 | |
---|---|---|
committer | 2025-01-01 03:35:05 +1100 | |
commit | a8ad791c767e0ee8bfa3cf21c1037400e92db762 (patch) | |
tree | 3e3f4da7cc8ba765f5aec69ecda5f48e3d76e518 /scripts | |
parent | 04cadfa6b8c031cdb27317abc8e8548109e6764c (diff) |
3rdparty/lzma: Don't treat K&R function definitions as an error. (#13080)
Some AArch64-specific code in C/CpuArch.c uses () when it should be using (void).
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/src/3rdparty.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 10e3efeb16a..14e7ca21b09 100755 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -866,6 +866,7 @@ project "7z" configuration { "gmake or ninja" } buildoptions_c { "-Wno-error=undef", + "-Wno-error=strict-prototypes", } if _OPTIONS["gcc"]~=nil then if string.find(_OPTIONS["gcc"], "clang") then |