summaryrefslogtreecommitdiff
path: root/xmake/core/base
diff options
context:
space:
mode:
authorruki <[email protected]>2026-02-07 00:58:04 +0800
committerruki <[email protected]>2026-02-07 00:58:04 +0800
commit08f5b8a7bdac97cab8f5055a5ae9b066d2b18664 (patch)
treecfd249b70ea0d20bb3e1ea485b3ef7c0428b5d21 /xmake/core/base
parentba898b75c5de008424bea5380977f05d364597b3 (diff)
fix missdll errorsmissdll
Diffstat (limited to 'xmake/core/base')
-rw-r--r--xmake/core/base/process.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/core/base/process.lua b/xmake/core/base/process.lua
index 3466b9575..692a6360f 100644
--- a/xmake/core/base/process.lua
+++ b/xmake/core/base/process.lua
@@ -307,6 +307,7 @@ end
-- get process exit errors
function process.get_exit_errors(program, exitcode)
+ local errors
if os.is_host("windows") then
-- DLL is missing, 0xC0000135
if exitcode == -1073741515 then
@@ -318,6 +319,7 @@ function process.get_exit_errors(program, exitcode)
end
end
end
+ return errors
end