diff options
| author | Stefan Boberg <[email protected]> | 2025-10-27 20:02:52 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-10-27 20:02:52 +0100 |
| commit | 0fa61ce3658fc9d97540f061860389dc62da62a0 (patch) | |
| tree | f7167f5b1b71d02c283e6538e157629d3612af3a /xmake.lua | |
| parent | add back zlib since Linux needs it (diff) | |
| download | zen-0fa61ce3658fc9d97540f061860389dc62da62a0.tar.xz zen-0fa61ce3658fc9d97540f061860389dc62da62a0.zip | |
disable lto because crashpad sucks
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ add_rules("mode.debug", "mode.release") if is_mode("release") then -- LTO does not appear to work with the current UE toolchain if not is_plat("linux") then - set_policy("build.optimization.lto", true) + --set_policy("build.optimization.lto", true) end set_optimize("fastest") end |