diff options
| author | Stefan Boberg <[email protected]> | 2026-03-18 09:16:42 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-18 09:16:42 +0100 |
| commit | 973fad4e4bdb03a852d40360b0a5590a370deb16 (patch) | |
| tree | 530eee006d3e6c77043968719e9243ef4717e8da /thirdparty | |
| parent | Changelog (diff) | |
| parent | fix for GHES failing on upload-artifacts@v3 (#856) (diff) | |
| download | zen-973fad4e4bdb03a852d40360b0a5590a370deb16.tar.xz zen-973fad4e4bdb03a852d40360b0a5590a370deb16.zip | |
Merge branch 'main' into zs/long-filename-improvement
Diffstat (limited to 'thirdparty')
| -rw-r--r-- | thirdparty/xmake.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/thirdparty/xmake.lua b/thirdparty/xmake.lua index e8832d50a..7377cf0f6 100644 --- a/thirdparty/xmake.lua +++ b/thirdparty/xmake.lua @@ -38,6 +38,7 @@ target('rpmalloc') set_languages("c17", "cxx20") if is_os("windows") and not (get_config("toolchain") or ""):find("clang") then add_cflags("/experimental:c11atomics", {force=true, tools="cl"}) + add_cflags("/wd5105", {tools="cl"}) end add_defines("RPMALLOC_FIRST_CLASS_HEAPS=1", "ENABLE_STATISTICS=1", "ENABLE_OVERRIDE=0") add_files("rpmalloc/rpmalloc.c") |