diff options
| author | Saikari <[email protected]> | 2026-02-05 21:37:51 +0300 |
|---|---|---|
| committer | Saikari <[email protected]> | 2026-02-05 21:37:51 +0300 |
| commit | 728ead07ff58cd9d8330075414cfe21b1034b757 (patch) | |
| tree | 96161a2f984d1d2b77ac48d1e6c1941e5c979a37 | |
| parent | 34a21b3d628b695491815da3f0c465a96e98fd30 (diff) | |
cls
| -rw-r--r-- | xmake/core/sandbox/modules/os.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xmake/core/sandbox/modules/os.lua b/xmake/core/sandbox/modules/os.lua index 77c591451..197356ffa 100644 --- a/xmake/core/sandbox/modules/os.lua +++ b/xmake/core/sandbox/modules/os.lua @@ -509,8 +509,6 @@ function sandbox_os.execv(program, argv, opt) local missing_dlls = _get_missing_dlls(program) if #missing_dlls > 0 then errors = string.format("execv(%s) failed(%d): system error 0xC0000135 (STATUS_DLL_NOT_FOUND).\nThe application failed to start because the following DLLs were not found:\n - %s\nPlease check your PATH environment variable or copy the missing DLLs to the executable directory.", cmd, ok, table.concat(missing_dlls, "\n - ")) - else - errors = string.format("execv(%s) failed(%d): system error 0xC0000135 (STATUS_DLL_NOT_FOUND).\nThe application failed to start because a dependent DLL was not found.\nPlease check your PATH environment variable or copy the missing DLL to the executable directory.", cmd, ok) end else errors = string.format("execv(%s) failed(%d)", cmd, ok) |
