aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-10-27 20:02:52 +0100
committerStefan Boberg <[email protected]>2025-10-27 20:02:52 +0100
commit0fa61ce3658fc9d97540f061860389dc62da62a0 (patch)
treef7167f5b1b71d02c283e6538e157629d3612af3a /xmake.lua
parentadd back zlib since Linux needs it (diff)
downloadzen-0fa61ce3658fc9d97540f061860389dc62da62a0.tar.xz
zen-0fa61ce3658fc9d97540f061860389dc62da62a0.zip
disable lto because crashpad sucks
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake.lua b/xmake.lua
index 66f55c25a..ab0195fdb 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -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