aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/xmake.lua b/xmake.lua
index ce1831e89..fa8fecf5a 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -48,7 +48,6 @@ if is_plat("linux") and "$(env UE_TOOLCHAIN_DIR)" ~= "" then
add_ldflags("$(projectdir)/thirdparty/ue-libcxx/lib64/libc++.a")
add_ldflags("$(projectdir)/thirdparty/ue-libcxx/lib64/libc++abi.a")
set_toolset("objcopy", "$(env UE_TOOLCHAIN_DIR)/bin/llvm-objcopy")
-
end
add_requires("vcpkg::mimalloc")
@@ -193,9 +192,9 @@ set_languages("cxx20")
-- always generate debug information
set_symbols("debug")
--- temporary workaround linux build fails with "section [index 46] has invalid sh_entsize: expected 16, but got 0" if we don't strip all symbols
+-- temporary workaround for linux build fails with "section [index 46] has invalid sh_entsize: expected 16, but got 0" if we don't strip all symbols
if is_plat("linux") and "$(env UE_TOOLCHAIN_DIR)" ~= "" then
- set_strip("all")
+ set_strip("none")
end
includes("src/transports")