From 1aa5abae9c4b86715c48ac5137d6411c6517e283 Mon Sep 17 00:00:00 2001 From: Saikari Date: Sun, 15 Feb 2026 20:32:34 +0300 Subject: retry --- core/src/cli/xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/cli/xmake.lua') diff --git a/core/src/cli/xmake.lua b/core/src/cli/xmake.lua index 2e4b1aea9..98e86b128 100644 --- a/core/src/cli/xmake.lua +++ b/core/src/cli/xmake.lua @@ -29,7 +29,7 @@ target("cli") -- add links if is_plat("windows") then - add_syslinks("ws2_32", "advapi32", "shell32") + add_syslinks("ws2_32", "advapi32", "shell32", "wintrust", "crypt32") add_ldflags("/export:malloc", "/export:free", "/export:memmove") elseif is_plat("android") then add_syslinks("m", "c") -- cgit v1.3.1 From a8a2c629923dd5143297d2acd64b11eb589e94cc Mon Sep 17 00:00:00 2001 From: Saikari Date: Sun, 15 Feb 2026 20:58:57 +0300 Subject: retry MinGW --- core/src/cli/xmake.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'core/src/cli/xmake.lua') diff --git a/core/src/cli/xmake.lua b/core/src/cli/xmake.lua index 98e86b128..e239776c6 100644 --- a/core/src/cli/xmake.lua +++ b/core/src/cli/xmake.lua @@ -36,6 +36,7 @@ target("cli") elseif is_plat("macosx") and is_config("runtime", "luajit") then add_ldflags("-all_load", "-pagezero_size 10000", "-image_base 100000000") elseif is_plat("mingw") then + add_syslinks("wintrust", "crypt32") add_ldflags("-static-libgcc", {force = true}) elseif is_plat("haiku") then add_syslinks("pthread", "network", "m", "c") -- cgit v1.3.1 From b82ccd6f714b59c4dd518d7dc2b07558a72d7a50 Mon Sep 17 00:00:00 2001 From: Saikari Date: Sun, 15 Feb 2026 21:26:52 +0300 Subject: Clear --- core/src/cli/xmake.lua | 1 - 1 file changed, 1 deletion(-) (limited to 'core/src/cli/xmake.lua') diff --git a/core/src/cli/xmake.lua b/core/src/cli/xmake.lua index e239776c6..98e86b128 100644 --- a/core/src/cli/xmake.lua +++ b/core/src/cli/xmake.lua @@ -36,7 +36,6 @@ target("cli") elseif is_plat("macosx") and is_config("runtime", "luajit") then add_ldflags("-all_load", "-pagezero_size 10000", "-image_base 100000000") elseif is_plat("mingw") then - add_syslinks("wintrust", "crypt32") add_ldflags("-static-libgcc", {force = true}) elseif is_plat("haiku") then add_syslinks("pthread", "network", "m", "c") -- cgit v1.3.1