diff options
| author | Liam Mitchell <[email protected]> | 2025-06-13 23:07:17 +0000 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-06-13 23:07:17 +0000 |
| commit | 18028888178f65cbfeffdb2e24569c4cbadcac04 (patch) | |
| tree | a6532b69bbbd4c680505315c8df16b1082dfefb0 /xmake.lua | |
| parent | Use llvm-objcopy provided by UE toolchain (diff) | |
| download | zen-18028888178f65cbfeffdb2e24569c4cbadcac04.tar.xz zen-18028888178f65cbfeffdb2e24569c4cbadcac04.zip | |
Temporarily disable stripping of symbols while investigating issues with toolchain versions of objcopy
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -117,6 +117,9 @@ if is_os("linux") or is_os("macosx") then add_cxxflags("-Wno-unused-private-field") add_cxxflags("-Wno-unused-value") add_cxxflags("-Wno-unused-variable") +end + +if is_os("linux") then add_cxxflags("-Wno-vla-cxx-extension") end @@ -188,6 +191,7 @@ set_languages("cxx20") -- always generate debug information set_symbols("debug") +set_strip("none") includes("src/transports") includes("src/zenbase") |